Package couchdbkit :: Package schema :: Module properties :: Class StringListProperty
[hide private]
[frames] | no frames]

Class StringListProperty

source code

object --+        
         |        
  Property --+    
             |    
  ListProperty --+
                 |
                StringListProperty

shorthand for list that should containe only unicode

Nested Classes [hide private]

Inherited from ListProperty: data_type

Instance Methods [hide private]
 
__init__(self, verbose_name=None, default=None, required=False, **kwds)
Construct ListProperty.
source code

Inherited from ListProperty: default_value, to_json, to_python, validate, validate_list_contents

Inherited from Property: __delete__, __get__, __property_config__, __property_init__, __set__, empty

Inherited from Property (private): _to_json, _to_python

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Variables [hide private]

Inherited from Property: creation_counter

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, verbose_name=None, default=None, required=False, **kwds)
(Constructor)

source code 

Construct ListProperty.

:args verbose_name: Optional verbose name. :args default: Optional default value; if omitted, an empty list is used. :args**kwds: Optional additional keyword arguments, passed to base class.

Overrides: object.__init__
(inherited documentation)