Package couchdb :: Module schema :: Class ListField :: Class Proxy

Class Proxy



object --+    
         |    
      list --+
             |
            ListField.Proxy

Instance Methods
 
__init__(self, list, field)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
 
__repr__(self)
repr(x)
 
__str__(self)
str(x)
 
__unicode__(self)
 
__delitem__(self, index)
del x[y]
 
__getitem__(self, index)
x[y]
 
__setitem__(self, index, value)
x[i]=y
 
__iter__(self)
iter(x)
 
__len__(self)
len(x)
 
__nonzero__(self)
 
append(self, *args, **kwargs)
append object to end
 
extend(self, list)
extend list by appending elements from the iterable

Inherited from list: __add__, __contains__, __delslice__, __eq__, __ge__, __getattribute__, __getslice__, __gt__, __hash__, __iadd__, __imul__, __le__, __lt__, __mul__, __ne__, __new__, __reversed__, __rmul__, __setslice__, count, index, insert, pop, remove, reverse, sort

Inherited from object: __delattr__, __reduce__, __reduce_ex__, __setattr__

Properties

Inherited from object: __class__

Method Details

__init__(self, list, field)
(Constructor)

 
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
Returns:
new list

Overrides: list.__init__
(inherited documentation)

__repr__(self)
(Representation operator)

 
repr(x)
Overrides: list.__repr__
(inherited documentation)

__str__(self)
(Informal representation operator)

 
str(x)
Overrides: object.__str__
(inherited documentation)

__delitem__(self, index)
(Index deletion operator)

 
del x[y]
Overrides: list.__delitem__
(inherited documentation)

__getitem__(self, index)
(Indexing operator)

 
x[y]
Overrides: list.__getitem__
(inherited documentation)

__setitem__(self, index, value)
(Index assignment operator)

 
x[i]=y
Overrides: list.__setitem__
(inherited documentation)

__iter__(self)

 
iter(x)
Overrides: list.__iter__
(inherited documentation)

__len__(self)
(Length operator)

 
len(x)
Overrides: list.__len__
(inherited documentation)

append(self, *args, **kwargs)

 
append object to end
Overrides: list.append
(inherited documentation)

extend(self, list)

 
extend list by appending elements from the iterable
Overrides: list.extend
(inherited documentation)