![]() |
ATLAS Offline Software
|
module implementation ---------------------------------------------------— More...
Public Member Functions | |
| def | __init__ (self, initdict=None) |
| def | __getattr__ (self, item) |
| def | __setattr__ (self, item, value) |
| def | __str__ (self) |
| def getitem(self, item): o = dict.__getitem__(self, item) if isinstance(o, str): return _xml_unescape(o) return o More... | |
| def | unwrap (self) |
Static Public Member Functions | |
| def | wrap (x) |
Static Private Member Functions | |
| def | _unwrap (x) |
module implementation ---------------------------------------------------—
Definition at line 26 of file xmldict.py.
| def python.xmldict.XmlDictObject.__init__ | ( | self, | |
initdict = None |
|||
| ) |
Definition at line 27 of file xmldict.py.
| def python.xmldict.XmlDictObject.__getattr__ | ( | self, | |
| item | |||
| ) |
Definition at line 32 of file xmldict.py.
| def python.xmldict.XmlDictObject.__setattr__ | ( | self, | |
| item, | |||
| value | |||
| ) |
Definition at line 35 of file xmldict.py.
| def python.xmldict.XmlDictObject.__str__ | ( | self | ) |
def getitem(self, item): o = dict.__getitem__(self, item) if isinstance(o, str): return _xml_unescape(o) return o
def setitem(self, item, value): if isinstance(value, str): value = _xml_unescape(value) dict.__setitem__(self, item, value)
Definition at line 49 of file xmldict.py.
|
staticprivate |
Definition at line 66 of file xmldict.py.
| def python.xmldict.XmlDictObject.unwrap | ( | self | ) |
Definition at line 75 of file xmldict.py.
|
static |
Definition at line 56 of file xmldict.py.
1.8.18