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 kristjan.jonsson
Recipients christian.heimes, gregory.p.smith, kristjan.jonsson, loewis, mark.dickinson, pitrou, serhiy.storchaka
Date 2012-11-21.13:19:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1353503973.4.0.397231001072.issue16475@psf.upfronthosting.co.za>
In-reply-to
Content
Code objects can indeed be shared.
One thing that the "recode" module does, or allows you to do, is to strip file and line number information from code objects.  This will theoretically allow them to be collapsed.

Martin, I agree the .pyc size matters.  You are right, priorities vary.  I am mainly focused on memory use, while others may be looking at disk use.  Disk use can of course be reduced by using tools like zip.  And code objects can be re-optimized at load time too using special importers.  But it is nice to be able to achieve both objectives by enabling the marshal format to preserve those optimizations that are performed on it prior to saving it.

I'm currently working on the recode module.  When its done, I'll report back and share it with you so that you can toy around with it.
History
Date User Action Args
2012-11-21 13:19:33kristjan.jonssonsetrecipients: + kristjan.jonsson, loewis, gregory.p.smith, mark.dickinson, pitrou, christian.heimes, serhiy.storchaka
2012-11-21 13:19:33kristjan.jonssonsetmessageid: <1353503973.4.0.397231001072.issue16475@psf.upfronthosting.co.za>
2012-11-21 13:19:33kristjan.jonssonlinkissue16475 messages
2012-11-21 13:19:32kristjan.jonssoncreate