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 Devyn Johnson
Recipients Devyn Johnson
Date 2015-12-18.12:18:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1450441110.24.0.672371380209.issue25903@psf.upfronthosting.co.za>
In-reply-to
Content
I have a suggestion. When Python code is byte-compiled to *.pyo files, what if byte-compiler were to be made to enhance some of the code. For instance, "if type(OBJECT) == int:" would be changed to "if isinstance(OBJECT, int):". Python is used in numerous software, so why not add a feature like this that could increase performance?
History
Date User Action Args
2015-12-18 12:18:30Devyn Johnsonsetrecipients: + Devyn Johnson
2015-12-18 12:18:30Devyn Johnsonsetmessageid: <1450441110.24.0.672371380209.issue25903@psf.upfronthosting.co.za>
2015-12-18 12:18:30Devyn Johnsonlinkissue25903 messages
2015-12-18 12:18:30Devyn Johnsoncreate