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 ncoghlan
Recipients Arfrever, benjamin.peterson, brett.cannon, eric.smith, eric.snow, loewis, ncoghlan, pitrou
Date 2012-05-28.03:02:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1338174123.63.0.501660197405.issue14928@psf.upfronthosting.co.za>
In-reply-to
Content
There are some additional challenges potentially posed by suggestions like http://bugs.python.org/issue10399, which would allow the compiler itself to use Python extensions.

However, those could be overcome by requiring that the compiler support running with any such extensions disabled.

Two more possible APIs:
  A -X option: "-Xbootstrap=Lib/importlib/_bootstrap.py"
  Allow frozen modules to be frozen as *source* rather than as a PYC file, then freeze importlib._bootstrap as source rather than as bytecode.
History
Date User Action Args
2012-05-28 03:02:03ncoghlansetrecipients: + ncoghlan, loewis, brett.cannon, pitrou, eric.smith, benjamin.peterson, Arfrever, eric.snow
2012-05-28 03:02:03ncoghlansetmessageid: <1338174123.63.0.501660197405.issue14928@psf.upfronthosting.co.za>
2012-05-28 03:02:03ncoghlanlinkissue14928 messages
2012-05-28 03:02:02ncoghlancreate