CaselessWeakValueDict

Inheritance diagram of CaselessWeakValueDict
class CaselessWeakValueDict(other=None)[source]

Import from taurus.core.util.containers as:

from taurus.core.util.containers import CaselessWeakValueDict
fromkeys(iterable, value=None)[source]
get(key, def_val=None)[source]

overwritten from weakref.WeakValueDictionary.get()

has_key(key)[source]

overwritten from weakref.WeakValueDictionary() (needed for python2)

pop(key, def_val=None)[source]

overwritten from weakref.WeakValueDictionary.pop()

setdefault(key, def_val=None)[source]

overwritten from weakref.WeakValueDictionary.setdefault()

update(other)[source]

overwritten from weakref.WeakValueDictionary.update()