digraph inheritance4359fb49ef {
bgcolor=transparent;
rankdir=UD;
ratio=compress;
size="8.0, 12.0";
"CaselessDict" [color=dodgerblue1,fillcolor=white,fontcolor=black,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.5,shape=box,style=rounded,tooltip="A case insensitive dictionary. Use this class as a normal dictionary."];
}
-
class
CaselessDict
(other=None)[source]
Bases: dict
A case insensitive dictionary. Use this class as a normal dictionary.
The keys must be strings
-
fromkeys
(iterable, value=None)[source]
Create a new dictionary with keys from iterable and values set to value.
-
get
(key, def_val=None)[source]
overwritten from dict.get()
-
has_key
(key)[source]
overwritten from dict.has_key()
(needed for python2)
-
pop
(key, def_val=None)[source]
overwritten from dict.pop()
-
setdefault
(key, def_val=None)[source]
overwritten from dict.setdefault()
-
update
(other)[source]
overwritten from dict.update()