[issue11164] xml shouldn't use _xmlplus

2011-05-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6c7984bae459 by Martin v. Löwis in branch '2.7': Issue 11164: Remove obsolete allnodes test from minidom test. http://hg.python.org/cpython/rev/6c7984bae459 -- ___ Python tracker

[issue11164] xml shouldn't use _xmlplus

2011-05-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset 61798f076676 by Martin v. Löwis in branch '3.1': Stop trying to use _xmlplus in the xml module. Closes #11164. http://hg.python.org/cpython/rev/61798f076676 -- nosy: +python-dev resolution: -> fixed stage: -> committed/rejected status: op

[issue11164] xml shouldn't use _xmlplus

2011-05-08 Thread Martin v . Löwis
Martin v. Löwis added the comment: allnodes was deleted in 5b3fbff05ffd -- ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue11164] xml shouldn't use _xmlplus

2011-05-08 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: I suggest to remove dead code in test_minidom in Python 2.7 to avoid confusion. -- Added file: http://bugs.python.org/file21934/python-2.7-test_minidom-remove_dead_code.patch ___ Python tracker

[issue11164] xml shouldn't use _xmlplus

2011-05-08 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: I have verified that xml.dom.minidom.Node from neither stdlib (at least 2.6, 2.7, 3.1, 3.2 and 3.3) nor PyXML 0.8.4 has 'allnodes' attribute. If you install PyXML 0.8.4 for Python 2.7 and change 'pass' in MinidomTest.tearDown() into 'rais

[issue11164] xml shouldn't use _xmlplus

2011-05-07 Thread Georg Brandl
Georg Brandl added the comment: In MinidomTest.tearDown, the majority of the code seems to be for the stdlib version, yet you remove the whole method. Can you elaborate? -- ___ Python tracker

[issue11164] xml shouldn't use _xmlplus

2011-05-07 Thread Ned Deily
Changes by Ned Deily : -- nosy: +georg.brandl ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue11164] xml shouldn't use _xmlplus

2011-05-07 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: I'm attaching the patch, which fixes this issue. It would be nice if the patch was applied before releases of Python 3.1.4 and 3.2.1. -- keywords: +patch Added file: http://bugs.python.org/file21931/python-3-remove_pyxml_support.pa

[issue11164] xml shouldn't use _xmlplus

2011-02-11 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo versions: +Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue11164] xml shouldn't use _xmlplus

2011-02-09 Thread Arfrever Frehtes Taifersar Arahesis
New submission from Arfrever Frehtes Taifersar Arahesis : Lib/xml/__init__.py since r16544 tries to replace xml package with _xmlplus package from PyXML. PyXML is no longer maintained and doesn't support Python 3, so it should be safe to remove PyXML-related code in Lib/xml/__init__.py in Pyt