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

benjamin at codespeak.net benjamin at codespeak.net
Wed Mar 10 23:51:22 CET 2010


Author: benjamin
Date: Wed Mar 10 23:51:20 2010
New Revision: 72084

Modified:
   pypy/trunk/pypy/interpreter/pycompiler.py
Log:
kill import

Modified: pypy/trunk/pypy/interpreter/pycompiler.py
==============================================================================
--- pypy/trunk/pypy/interpreter/pycompiler.py	(original)
+++ pypy/trunk/pypy/interpreter/pycompiler.py	Wed Mar 10 23:51:20 2010
@@ -250,8 +250,7 @@
     def _compile_to_ast(self, source, info):
         from pypy.interpreter.pyparser.future import get_futures
         from pypy.interpreter.pyparser.error import (SyntaxError,
-                                                     IndentationError,
-                                                     TokenIndentationError)
+                                                     IndentationError)
         from pypy.interpreter.astcompiler.astbuilder import ast_from_node
         space = self.space
         try:



More information about the Pypy-commit mailing list