lxml :: html :: FieldsDict :: Class FieldsDict
[hide private]
[frames] | no frames]

Class FieldsDict

source code

       object --+            
                |            
    _abcoll.Sized --+        
                    |        
       object --+   |        
                |   |        
 _abcoll.Iterable --+        
                    |        
       object --+   |        
                |   |        
_abcoll.Container --+        
                    |        
      _abcoll.Mapping --+    
                        |    
   _abcoll.MutableMapping --+
                            |
                           FieldsDict

Nested Classes [hide private]

Inherited from _abcoll.Sized: __metaclass__

Instance Methods [hide private]
 
__init__(self, inputs)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
__getitem__(self, item) source code
 
__setitem__(self, item, value) source code
 
__delitem__(self, item) source code
 
keys(self) source code
 
__contains__(self, item) source code
 
__iter__(self) source code
 
__len__(self) source code
 
__repr__(self)
repr(x)
source code

Inherited from _abcoll.MutableMapping: clear, pop, popitem, setdefault, update

Inherited from _abcoll.Mapping: __eq__, __ne__, get, items, iteritems, iterkeys, itervalues, values

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

Class Methods [hide private]

Inherited from _abcoll.Sized: __subclasshook__

Class Variables [hide private]
  __abstractmethods__ = frozenset([])
  _abc_negative_cache = <_weakrefset.WeakSet object at 0x33aead0>
  _abc_negative_cache_version = 18
  _abc_registry = <_weakrefset.WeakSet object at 0x33ae990>

Inherited from _abcoll.Mapping: __hash__

Inherited from _abcoll.Sized (private): _abc_cache

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, inputs)
(Constructor)

source code 
x.__init__(...) initializes x; see help(type(x)) for signature
Overrides: object.__init__
(inherited documentation)

__getitem__(self, item)
(Indexing operator)

source code 
Overrides: _abcoll.Mapping.__getitem__

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

source code 
Overrides: _abcoll.MutableMapping.__setitem__

__delitem__(self, item)
(Index deletion operator)

source code 
Overrides: _abcoll.MutableMapping.__delitem__

keys(self)

source code 
Overrides: _abcoll.Mapping.keys

__contains__(self, item)
(In operator)

source code 
Overrides: _abcoll.Container.__contains__

__iter__(self)

source code 
Overrides: _abcoll.Iterable.__iter__

__len__(self)
(Length operator)

source code 
Overrides: _abcoll.Sized.__len__

__repr__(self)
(Representation operator)

source code 
repr(x)
Overrides: object.__repr__
(inherited documentation)