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 rhettinger, serhiy.storchaka
Date 2017-09-26.05:27:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1506403646.08.0.860843396895.issue31585@psf.upfronthosting.co.za>
In-reply-to
Content
Currently the large and complex part of enum_next() and enum_next_long() in Objects/enumobject.c is duplicated. This increases the code size and makes harder maintaining the code. The proposed patch refactors the implementation and removes the code duplication.
History
Date User Action Args
2017-09-26 05:27:26serhiy.storchakasetrecipients: + serhiy.storchaka, rhettinger
2017-09-26 05:27:26serhiy.storchakasetmessageid: <1506403646.08.0.860843396895.issue31585@psf.upfronthosting.co.za>
2017-09-26 05:27:26serhiy.storchakalinkissue31585 messages
2017-09-26 05:27:25serhiy.storchakacreate