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:38:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1537367937.72.0.956365154283.issue34741@psf.upfronthosting.co.za>
In-reply-to
Content
Currently pyexpat.xmlparser has the tp_getattro and tp_setattro 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 help(), no need of the __dir__() method, better structured code.
History
Date User Action Args
2018-09-19 14:38:57serhiy.storchakasetrecipients: + serhiy.storchaka, scoder, eli.bendersky
2018-09-19 14:38:57serhiy.storchakasetmessageid: <1537367937.72.0.956365154283.issue34741@psf.upfronthosting.co.za>
2018-09-19 14:38:57serhiy.storchakalinkissue34741 messages
2018-09-19 14:38:57serhiy.storchakacreate