This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients eli.bendersky, scoder, serhiy.storchaka
Date 2018-09-19.14:25:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1537367112.3.0.956365154283.issue34739@psf.upfronthosting.co.za>
In-reply-to
Content
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 help(), better structured code.
History
Date User Action Args
2018-09-19 14:25:12serhiy.storchakasetrecipients: + serhiy.storchaka, scoder, eli.bendersky
2018-09-19 14:25:12serhiy.storchakasetmessageid: <1537367112.3.0.956365154283.issue34739@psf.upfronthosting.co.za>
2018-09-19 14:25:12serhiy.storchakalinkissue34739 messages
2018-09-19 14:25:12serhiy.storchakacreate