[pypy-svn] r70800 - pypy/trunk/pypy/interpreter

cfbolz at codespeak.net cfbolz at codespeak.net
Sun Jan 24 19:52:56 CET 2010


Author: cfbolz
Date: Sun Jan 24 19:52:56 2010
New Revision: 70800

Modified:
   pypy/trunk/pypy/interpreter/pycode.py
Log:
fix comment, importing lives somewhere else now.


Modified: pypy/trunk/pypy/interpreter/pycode.py
==============================================================================
--- pypy/trunk/pypy/interpreter/pycode.py	(original)
+++ pypy/trunk/pypy/interpreter/pycode.py	Sun Jan 24 19:52:56 2010
@@ -27,7 +27,7 @@
 
 
 # Magic numbers for the bytecode version in code objects.
-# See comments in pypy/module/__builtin__/importing.
+# See comments in pypy/module/imp/importing.
 cpython_magic, = struct.unpack("<i", imp.get_magic())   # host magic number
 default_magic = (62131+2) | 0x0a0d0000                  # this PyPy's magic
                                                         # (62131=CPython 2.5.1)



More information about the Pypy-commit mailing list