[pypy-svn] r17218 - pypy/dist/pypy/interpreter/astcompiler

adim at codespeak.net adim at codespeak.net
Mon Sep 5 10:38:29 CEST 2005


Author: adim
Date: Mon Sep  5 10:38:28 2005
New Revision: 17218

Modified:
   pypy/dist/pypy/interpreter/astcompiler/future.py
Log:
use pyparser's SyntaxError

Modified: pypy/dist/pypy/interpreter/astcompiler/future.py
==============================================================================
--- pypy/dist/pypy/interpreter/astcompiler/future.py	(original)
+++ pypy/dist/pypy/interpreter/astcompiler/future.py	Mon Sep  5 10:38:28 2005
@@ -1,7 +1,7 @@
 """Parser for future statements
 
 """
-
+from pypy.interpreter.pyparser.error import SyntaxError
 from pypy.interpreter.astcompiler import ast, walk
 
 def is_future(stmt):



More information about the Pypy-commit mailing list