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 methane
Recipients Dan Rose, brett.cannon, mark.dickinson, methane, serhiy.storchaka, terry.reedy, tim.peters, vstinner
Date 2018-07-19.09:32:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1531992725.6.0.56676864532.issue34100@psf.upfronthosting.co.za>
In-reply-to
Content
Counting object types in logging/__pycache__/__init__.cpython-38.pyc:

master:
[('r', 1815), (')', 467), ('Z', 339), ('s', 314), ('z', 273), ('c', 157), ('N', 154), ('a', 24), ('F', 14), ('i', 11), ('T', 8)]

GH-8341:
[('r', 1737), (')', 375), ('Z', 339), ('s', 314), ('z', 264), ('c', 157), ('N', 138), ('a', 24), ('F', 14), ('i', 11), ('T', 8)]

It reduced about 5% objects.

I chose logging/__init__ because it's large except tests, and it's written in OO-based. (Large application has many OO-based code).
History
Date User Action Args
2018-07-19 09:32:05methanesetrecipients: + methane, tim.peters, brett.cannon, terry.reedy, mark.dickinson, vstinner, serhiy.storchaka, Dan Rose
2018-07-19 09:32:05methanesetmessageid: <1531992725.6.0.56676864532.issue34100@psf.upfronthosting.co.za>
2018-07-19 09:32:05methanelinkissue34100 messages
2018-07-19 09:32:05methanecreate