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 abarry
Recipients Devyn Johnson, Rosuav, abarry
Date 2015-12-18.15:01:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1450450875.58.0.831275676833.issue25903@psf.upfronthosting.co.za>
In-reply-to
Content
*.pyo files have been removed from the language as of 3.5; instead, the optimization is done directly to the *.pyc files. Are you suggesting re-introducing *.pyo files or changing this behaviour in the current model?

Also, 'if type(obj) is int' is *not* the same as 'if isinstance(obj, int)' -- the first one checks explicitely that 'obj' is an int. The second allows for any arbitrary subclass of int; most people using the first idiom want ints specifically, disallowing subclasses.

What other optimizations do you have in mind?
History
Date User Action Args
2015-12-18 15:01:15abarrysetrecipients: + abarry, Rosuav, Devyn Johnson
2015-12-18 15:01:15abarrysetmessageid: <1450450875.58.0.831275676833.issue25903@psf.upfronthosting.co.za>
2015-12-18 15:01:15abarrylinkissue25903 messages
2015-12-18 15:01:15abarrycreate