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

arigo at codespeak.net arigo at codespeak.net
Wed Mar 10 13:42:44 CET 2010


Author: arigo
Date: Wed Mar 10 13:42:43 2010
New Revision: 72041

Modified:
   pypy/trunk/pypy/interpreter/pycompiler.py
Log:
Add an XXX.


Modified: pypy/trunk/pypy/interpreter/pycompiler.py
==============================================================================
--- pypy/trunk/pypy/interpreter/pycompiler.py	(original)
+++ pypy/trunk/pypy/interpreter/pycompiler.py	Wed Mar 10 13:42:43 2010
@@ -264,6 +264,7 @@
             raise OperationError(space.w_IndentationError,
                                  e.wrap_info(space))
         except TokenIndentationError, e:
+            # XXX this case in unreachable?
             raise OperationError(space.w_IndentationError,
                                  e.wrap_info(space))
         except SyntaxError, e:



More information about the Pypy-commit mailing list