Home | Trees | Indices | Help |
|
---|
|
object --+ | dict --+ | CaseInsensitiveDict
A case-insensitive dict subclass.
Each key is changed on entry to str(key).title().
|
|||
|
|||
|
|||
|
|||
True if D has a key k, else False |
|
||
D[k] if k in D, else d |
|
||
True if D has a key k, else False |
|
||
None |
|
||
D.get(k,d), also set D[k]=d if k not in D |
|
||
v, remove specified key and return the corresponding value |
|
||
Inherited from Inherited from |
|
|||
New dict with keys from S and values equal to v |
|
|
|||
Inherited from |
|
|||
Inherited from |
|
x[y]
|
x[i]=y
|
del x[y]
|
|
d defaults to None.
|
|
Update D from dict/iterable E and F. If E present and has a .keys() method, does: for k in E: D[k] = E[k] If E present and lacks .keys() method, does: for (k, v) in E: D[k] = v In either case, this is followed by: for k in F: D[k] = F[k]
|
v defaults to None.
|
|
If key is not found, d is returned if given, otherwise KeyError is raised
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Tue Mar 19 14:12:26 2013 | http://epydoc.sourceforge.net |