[issue34739] Get rid of tp_getattro in xml.etree.ElementTree.XMLParser

2018-10-04 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue34739] Get rid of tp_getattro in xml.etree.ElementTree.XMLParser

2018-10-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset b2953fa3dda5898fcb0029792d9229f150e6e2cb by Serhiy Storchaka in branch 'master': bpo-34739: Get rid of tp_getattro in xml.etree.ElementTree.XMLParser. (GH-9420) https://github.com/python/cpython/commit/b2953fa3dda5898fcb0029792d9229f150e6e2cb

[issue34739] Get rid of tp_getattro in xml.etree.ElementTree.XMLParser

2018-09-19 Thread Stefan Behnel
Stefan Behnel added the comment: Nice. Looks good to me. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34739] Get rid of tp_getattro in xml.etree.ElementTree.XMLParser

2018-09-19 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +8840 stage: -> patch review ___ Python tracker ___ ___ Python-bugs

[issue34739] Get rid of tp_getattro in xml.etree.ElementTree.XMLParser

2018-09-19 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : Currently xml.etree.ElementTree.XMLParser has the tp_getattro slot for handling some attributes. The proposed PR replaces it with tp_members and tp_getset. Benefits: constant time access, names of these attributes are added to the result of dir() and hel