[issue9708] cElementTree iterparse does not support "parser" argument

2013-01-24 Thread Eli Bendersky
Changes by Eli Bendersky : -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker ___

[issue9708] cElementTree iterparse does not support "parser" argument

2013-01-24 Thread Roundup Robot
Roundup Robot added the comment: New changeset 8f2edea69d5d by Eli Bendersky in branch '2.7': Issue #9708: clarify doc of iterparse - cElementTree doesn't support the parser argument http://hg.python.org/cpython/rev/8f2edea69d5d -- ___ Python tracker

[issue9708] cElementTree iterparse does not support "parser" argument

2013-01-24 Thread Eli Bendersky
Eli Bendersky added the comment: Fix to 3.2 committed in 5b02d622d625 -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue9708] cElementTree iterparse does not support "parser" argument

2013-01-24 Thread Eli Bendersky
Eli Bendersky added the comment: Support added in 3.3 and default Documentation patches should be done for 2.7 and 3.2 -- ___ Python tracker ___ _

[issue9708] cElementTree iterparse does not support "parser" argument

2013-01-24 Thread Roundup Robot
Roundup Robot added the comment: New changeset cce526a28f81 by Eli Bendersky in branch '3.3': Issue #9708: Fix support for iterparse(parser=...) argument per documentation. http://hg.python.org/cpython/rev/cce526a28f81 New changeset 0c9268ac3ffa by Eli Bendersky in branch 'default': Issue #9708:

[issue9708] cElementTree iterparse does not support "parser" argument

2013-01-22 Thread Silvan Jegen
Silvan Jegen added the comment: The situation is as follows. According to the online documentation of Python 2.7 the xml.etree.ElementTree.iterparse() function takes up to three arguments, two of them named ones: xml.etree.ElementTree.iterparse(source, events=None, parser=None) In the C i

[issue9708] cElementTree iterparse does not support "parser" argument

2013-01-22 Thread Eli Bendersky
Eli Bendersky added the comment: Could you point out specifically which methods in ET don't work with the argument, and describe the problem in general? -- ___ Python tracker ___

[issue9708] cElementTree iterparse does not support "parser" argument

2013-01-22 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti versions: +Python 3.4 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue9708] cElementTree iterparse does not support "parser" argument

2012-07-21 Thread Florent Xicluna
Florent Xicluna added the comment: Either the documentation or the implementation should be fixed in 3.3, because they do not match. -- nosy: +eli.bendersky versions: +Python 3.3 ___ Python tracker ___

[issue9708] cElementTree iterparse does not support "parser" argument

2011-11-25 Thread Silvan Jegen
Silvan Jegen added the comment: I changed a few lines in the glue code of the _elementtree.c Module of Python 3.3.0a0 to add support for the "parser" argument. I do have to admit though that I am not familiar with the Python/C-API so this solution may not be ideal (i. e. it may be falling bac

[issue9708] cElementTree iterparse does not support "parser" argument

2011-10-28 Thread Florent Xicluna
Florent Xicluna added the comment: Documentation should be fixed for 3.2 and 2.7. Patch welcomed. -- assignee: -> docs@python components: +Documentation nosy: +docs@python stage: test needed -> needs patch ___ Python tracker

[issue9708] cElementTree iterparse does not support "parser" argument

2010-09-03 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +effbot stage: -> unit test needed type: -> behavior versions: +Python 3.2 ___ Python tracker ___ _

[issue9708] cElementTree iterparse does not support "parser" argument

2010-08-28 Thread R. David Murray
Changes by R. David Murray : -- nosy: +flox ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue9708] cElementTree iterparse does not support "parser" argument

2010-08-28 Thread Adrian Nye
New submission from Adrian Nye : The (python) ElementTree library began in 2.7 to support the "parser" argument, but cElementTree does not support it. Either cElementTree should support it, or the documentation should mention that it does not. -- components: XML messages: 115173 nosy: