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 serhiy.storchaka
Date 2018-09-19.14:31:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1537367489.08.0.956365154283.issue34740@psf.upfronthosting.co.za>
In-reply-to
Content
Currently ossaudiodev.oss_audio_device 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:31:29serhiy.storchakasetrecipients: + serhiy.storchaka
2018-09-19 14:31:29serhiy.storchakasetmessageid: <1537367489.08.0.956365154283.issue34740@psf.upfronthosting.co.za>
2018-09-19 14:31:29serhiy.storchakalinkissue34740 messages
2018-09-19 14:31:29serhiy.storchakacreate