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 pitrou, serhiy.storchaka
Date 2017-12-20.17:18:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1513790297.79.0.213398074469.issue32385@psf.upfronthosting.co.za>
In-reply-to
Content
This has also a performance effect.

$ ./python -m perf timeit -s "class A: pass" -s "class B: pass" --duplicate 1000  "class C(A, B): pass"

Before: Mean +- std dev: 9.41 us +- 0.28 us
After:  Mean +- std dev: 8.94 us +- 0.28 us
History
Date User Action Args
2017-12-20 17:18:17serhiy.storchakasetrecipients: + serhiy.storchaka, pitrou
2017-12-20 17:18:17serhiy.storchakasetmessageid: <1513790297.79.0.213398074469.issue32385@psf.upfronthosting.co.za>
2017-12-20 17:18:17serhiy.storchakalinkissue32385 messages
2017-12-20 17:18:17serhiy.storchakacreate