[Python-checkins] r52923 - sandbox/trunk/import_in_py/importer.py

brett.cannon python-checkins at python.org
Tue Dec 5 23:28:56 CET 2006


Author: brett.cannon
Date: Tue Dec  5 23:28:55 2006
New Revision: 52923

Modified:
   sandbox/trunk/import_in_py/importer.py
Log:
Add note about what happens when magic number and bytecode are fine but the
marshalled code object is bad.


Modified: sandbox/trunk/import_in_py/importer.py
==============================================================================
--- sandbox/trunk/import_in_py/importer.py	(original)
+++ sandbox/trunk/import_in_py/importer.py	Tue Dec  5 23:28:55 2006
@@ -28,9 +28,7 @@
 
 XXX Semantics
 =============
-Bytecode
---------
-* What to do when magic number and timestamp works, but bytecode is bad?
+* When bad marshalled bytecode: ``ImportError: Non-code object in bad_bc.pyc``
   
 
 Things to be exposed at the Python level


More information about the Python-checkins mailing list