[issue21774] Fix a NameError in xml.dom.minidom

2014-06-15 Thread Claudiu Popa
New submission from Claudiu Popa: Hi. This patch fixes a NameError found in xml.dom.minidom. Here's an example for reproducing it: from xml.dom import minidom dom = minidom.parseString(a1/a) pi = dom.createProcessingInstruction('xml-stylesheet',

[issue21774] Fix a NameError in xml.dom.minidom

2014-06-15 Thread Raymond Hettinger
Changes by Raymond Hettinger raymond.hettin...@gmail.com: -- assignee: - rhettinger nosy: +rhettinger ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21774 ___

[issue21774] Fix a NameError in xml.dom.minidom

2014-06-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset ca33faa214ab by Raymond Hettinger in branch '3.4': Issue #21774: Fix incorrect variable in xml.dom.minidom http://hg.python.org/cpython/rev/ca33faa214ab -- nosy: +python-dev ___ Python tracker

[issue21774] Fix a NameError in xml.dom.minidom

2014-06-15 Thread Raymond Hettinger
Raymond Hettinger added the comment: Thanks for the patch. I'm curious how did you notice this? -- resolution: - fixed status: open - closed versions: +Python 3.4 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21774

[issue21774] Fix a NameError in xml.dom.minidom

2014-06-15 Thread Claudiu Popa
Claudiu Popa added the comment: My pleasure. I run Pylint from time to time over stdlib in order to find false positives for Pylint and in the process I stumble across these type of bugs. -- ___ Python tracker rep...@bugs.python.org