CaselessDefaultDict

digraph inheritance333a16af52 { bgcolor=transparent; rankdir=UD; ratio=compress; size="8.0, 12.0"; "CaselessDefaultDict" [URL="#taurus.core.util.containers.CaselessDefaultDict",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,target="_top",tooltip="a join venture between caseless and default dict"]; "defaultdict_fromkey" -> "CaselessDefaultDict" [arrowsize=0.5,style="setlinewidth(0.5)"]; "CaselessDict" -> "CaselessDefaultDict" [arrowsize=0.5,style="setlinewidth(0.5)"]; "CaselessDict" [URL="taurus.core.util.containers-CaselessDict.html#taurus.core.util.containers.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,target="_top",tooltip="A case insensitive dictionary. Use this class as a normal dictionary."]; "defaultdict" [URL="taurus.core.util.containers-defaultdict.html#taurus.core.util.containers.defaultdict",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,target="_top",tooltip="defaultdict(default_factory=None, /, [...]) --> dict with default factory"]; "defaultdict_fromkey" [URL="taurus.core.util.containers-defaultdict_fromkey.html#taurus.core.util.containers.defaultdict_fromkey",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,target="_top",tooltip="Creates a dictionary with a default_factory function that creates new"]; "defaultdict" -> "defaultdict_fromkey" [arrowsize=0.5,style="setlinewidth(0.5)"]; }
class CaselessDefaultDict[source]

a join venture between caseless and default dict This class merges the two previous ones. This declaration equals to:

CaselessDefaultDict = type(
    'CaselessDefaultType',
    (CaselessDict,defaultdict_fromkey),
    {}
)

Import from taurus.core.util.containers as:

from taurus.core.util.containers import CaselessDefaultDict