예제 #1
0
 def __init__(self, xml):
     OrdDict.__init__(self)
     if xml is None: return
     for cert in list(xml):
         self[cert.attrib['locale']] = cert.attrib['name']
예제 #2
0
 def __init__(self, xml):
     OrdDict.__init__(self)
     if xml is None: return
     for cert in xml.getchildren():
         self[cert.attrib['locale']] = cert.attrib['name']
예제 #3
0
파일: system.py 프로젝트: Olti/mythtv
 def __init__(self, xml):
     OrdDict.__init__(self)
     if xml is None: return
     for cert in xml.getchildren():
         self[cert.attrib['locale']] = cert.attrib['name']