[issue4849] instantiating and populating xml.dom.minidom.Element is cumbersome
Alexander O added the comment: On Jun 2, 2012 7:00 AM, "Alexandre Zani" wrote: > > Alexandre Zani added the comment: > > Here is my patch for it. > > -- > keywords: +patch > Added file: http://bugs.python.org/f
[issue4849] instantiating and populating xml.dom.minidom.Element is cumbersome
Alexander O added the comment: stupid question but why shouldn't this be possible ? class Element(_Element): def __init__(self,name,**kwargs): _Element.__init__(self,name) attributes = kwargs.get("attributes") childr