[pypy-svn] r68725 - pypy/trunk/pypy/interpreter/pyparser

benjamin at codespeak.net benjamin at codespeak.net
Sat Oct 24 16:20:58 CEST 2009


Author: benjamin
Date: Sat Oct 24 16:20:57 2009
New Revision: 68725

Modified:
   pypy/trunk/pypy/interpreter/pyparser/future.py
Log:
remove pointless else

Modified: pypy/trunk/pypy/interpreter/pyparser/future.py
==============================================================================
--- pypy/trunk/pypy/interpreter/pyparser/future.py	(original)
+++ pypy/trunk/pypy/interpreter/pyparser/future.py	Sat Oct 24 16:20:57 2009
@@ -207,9 +207,7 @@
                     self.col_offset = col_offset
                     self.lineno = line
             self.consume_empty_line()
-        else:
-            return
-        
+
     def consume_mandatory_whitespace(self):
         if self.getc() not in whitespace + '\\':
             raise DoneException



More information about the Pypy-commit mailing list