NocaseDict¶
-
class
lmiwbem.lmiwbem_core.
NocaseDict
(d=None)¶ Parameters: d (dict, NocaseDict) – Dictionary to copy from -
clear
()¶
-
copy
()¶
-
get
(key, default_value=None)¶ Returns a value correponding to the key or default_value if not found.
Parameters: - key (basestring) – Key of the value to return
- default_value – Default value if key not found
Returns: Corresponding value to key or default_value
-
has_key
()¶
-
items
()¶
-
iteritems
()¶
-
iterkeys
()¶
-
itervalues
()¶
-
keys
()¶
-
pop
(key, default_value)¶ Returns and removes a value correponding to the key. If the key is not present, default_value is returned.
Parameters: - key (basestring) – Key of the value to return
- default_value – Default value if key not found
Returns: Corresponding value to key or default_value
-
update
()¶
-
values
()¶
-