[issue18990] Remove root attribute from XMLPullParser

2013-09-28 Thread Stefan Behnel
Stefan Behnel added the comment: Thanks, Nick. Your changes look good to me. -- ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue18990] Remove root attribute from XMLPullParser

2013-09-28 Thread Nick Coghlan
Nick Coghlan added the comment: We're not changing XMLPullParser.close() to return anything other than None, so the unit tests now check for this, and this behaviour is explicitly documented with users redirected towards read_events() instead. This is consistent with the XMLParser.close() API,

[issue18990] Remove root attribute from XMLPullParser

2013-09-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset c5e206b9df2e by Nick Coghlan in branch 'default': Close #18990: remove root attribute from XMLPullParser http://hg.python.org/cpython/rev/c5e206b9df2e -- nosy: +python-dev resolution: -> fixed stage: -> committed/rejected status: open -> c

[issue18990] Remove root attribute from XMLPullParser

2013-09-28 Thread Nick Coghlan
Changes by Nick Coghlan : -- title: Return root element from ElementTree.XMLPullParser.close() to match ElementTree.XMLParser -> Remove root attribute from XMLPullParser ___ Python tracker