Package cherrypy :: Package lib :: Module cptools :: Class MonitoredHeaderMap
[hide private]
[frames] | no frames]

Class MonitoredHeaderMap

source code

              object --+            
                       |            
                    dict --+        
                           |        
httputil.CaseInsensitiveDict --+    
                               |    
              httputil.HeaderMap --+
                                   |
                                  MonitoredHeaderMap

Instance Methods [hide private]
new empty dictionary

__init__(self)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
__getitem__(self, key)
x[y]
source code
True if D has a key k, else False
__contains__(self, key) source code
D[k] if k in D, else d
get(self, key, default=None)
d defaults to None.
source code
True if D has a key k, else False
has_key(self, key) source code

Inherited from httputil.HeaderMap: elements, encode, output, values

Inherited from httputil.CaseInsensitiveDict: __delitem__, __setitem__, pop, setdefault, update

Inherited from dict: __cmp__, __eq__, __ge__, __getattribute__, __gt__, __iter__, __le__, __len__, __lt__, __ne__, __new__, __repr__, __sizeof__, clear, copy, items, iteritems, iterkeys, itervalues, keys, popitem, viewitems, viewkeys, viewvalues

Inherited from object: __delattr__, __format__, __reduce__, __reduce_ex__, __setattr__, __str__, __subclasshook__

Class Methods [hide private]

Inherited from httputil.CaseInsensitiveDict: fromkeys

Class Variables [hide private]

Inherited from httputil.HeaderMap: encodings, protocol, use_rfc_2047

Inherited from dict: __hash__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Returns:
new empty dictionary

Overrides: object.__init__
(inherited documentation)

__getitem__(self, key)
(Indexing operator)

source code 

x[y]

Overrides: dict.__getitem__
(inherited documentation)

__contains__(self, key)
(In operator)

source code 
Returns: True if D has a key k, else False
Overrides: dict.__contains__
(inherited documentation)

get(self, key, default=None)

source code 

d defaults to None.

Returns: D[k] if k in D, else d
Overrides: dict.get
(inherited documentation)

has_key(self, key)

source code 
Returns: True if D has a key k, else False
Overrides: dict.has_key
(inherited documentation)