taurus taurus

Previous topic

CaselessDefaultDict

Next topic

CaselessList

This Page

CaselessDict

Inheritance diagram of CaselessDict

class CaselessDict(other=None)

Bases: dict

A case insensitive dictionary. Use this class as a normal dictionary. The keys must be strings

fromkeys(iterable, value=None)
get(key, def_val=None)

overwritten from dict.get()

has_key(key)

overwritten from dict.has_key()

pop(key, def_val=None)

overwritten from dict.pop()

setdefault(key, def_val=None)

overwritten from dict.setdefault()

update(other)

overwritten from dict.update()