[pypy-svn] r15309 - pypy/dist/pypy/interpreter

arigo at codespeak.net arigo at codespeak.net
Fri Jul 29 01:29:23 CEST 2005


Author: arigo
Date: Fri Jul 29 01:29:21 2005
New Revision: 15309

Modified:
   pypy/dist/pypy/interpreter/pycompiler.py
Log:
Missing import.


Modified: pypy/dist/pypy/interpreter/pycompiler.py
==============================================================================
--- pypy/dist/pypy/interpreter/pycompiler.py	(original)
+++ pypy/dist/pypy/interpreter/pycompiler.py	Fri Jul 29 01:29:21 2005
@@ -277,6 +277,7 @@
         source_encoding, stack_element = parse_result
         w_nested_tuples = stack_element.as_w_tuple(space, lineno=True)
         if source_encoding is not None:
+            from pypy.interpreter.pyparser import pysymbol
             w_nested_tuples = space.newtuple([
                 space.wrap(pysymbol.encoding_decl),
                 w_nested_tuples,



More information about the Pypy-commit mailing list