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 gvanrossum
Recipients gvanrossum, iritkatriel, rhettinger, serhiy.storchaka
Date 2021-09-10.19:48:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1631303312.32.0.904414842148.issue45152@roundup.psfhosted.org>
In-reply-to
Content
We're not (yet) trying to optimize the code being executed (we should perhaps add an issue about class creation to https://github.com/faster-cpython/ideas).

I agree that marshal is very fast already; I doubt the extra cost of wordcode would pay off since it would increase the size. This could be tested but it would be a big experiment.

I'm not sure that compression will really help, since a typical decompressor delivers its output in some memory buffer. But this needs to be tested, and it might be a simpler experiment.

I'm pretty sure zipimport will improve things -- the main problem with it (as always) is that not all tooling understands it, since resource loading is different.
History
Date User Action Args
2021-09-10 19:48:32gvanrossumsetrecipients: + gvanrossum, rhettinger, serhiy.storchaka, iritkatriel
2021-09-10 19:48:32gvanrossumsetmessageid: <1631303312.32.0.904414842148.issue45152@roundup.psfhosted.org>
2021-09-10 19:48:32gvanrossumlinkissue45152 messages
2021-09-10 19:48:32gvanrossumcreate