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 ethan.furman
Recipients barry, eli.bendersky, eric.snow, ethan.furman, r.david.murray, rhettinger, serhiy.storchaka, vstinner
Date 2015-09-17.17:55:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1442512540.36.0.175701198752.issue25147@psf.upfronthosting.co.za>
In-reply-to
Content
_collections sounds cool, but the flip side is any python without the C implemntation would still have the slower startup, right?

No, I don't have measurements -- just that I have heard importing collections can have an effect on startup time.

Of course, it's only a cost you pay once, so maybe it's not a big deal.

On the other hand, I could make __members__ a caching property that doesn't import OrderedDict until it is used, and not use it internally -- and I can't think of any reason why the stdlib would need to access __members__ itself.
History
Date User Action Args
2015-09-17 17:55:40ethan.furmansetrecipients: + ethan.furman, barry, rhettinger, vstinner, r.david.murray, eli.bendersky, eric.snow, serhiy.storchaka
2015-09-17 17:55:40ethan.furmansetmessageid: <1442512540.36.0.175701198752.issue25147@psf.upfronthosting.co.za>
2015-09-17 17:55:40ethan.furmanlinkissue25147 messages
2015-09-17 17:55:40ethan.furmancreate