[pypy-svn] r16702 - pypy/release/0.7.x/pypy/interpreter/pyparser/test

ludal at codespeak.net ludal at codespeak.net
Fri Aug 26 22:52:37 CEST 2005


Author: ludal
Date: Fri Aug 26 22:52:35 2005
New Revision: 16702

Modified:
   pypy/release/0.7.x/pypy/interpreter/pyparser/test/test_astbuilder.py
Log:
 - the test contained incorrect expressions which are now caught by the transformer


Modified: pypy/release/0.7.x/pypy/interpreter/pyparser/test/test_astbuilder.py
==============================================================================
--- pypy/release/0.7.x/pypy/interpreter/pyparser/test/test_astbuilder.py	(original)
+++ pypy/release/0.7.x/pypy/interpreter/pyparser/test/test_astbuilder.py	Fri Aug 26 22:52:35 2005
@@ -244,8 +244,8 @@
     ]
 
 imports_newstyle = [
-    'from os import path, system,',
-    'from os import path as P, system as S,',
+    'from os import path, system',
+    'from os import path as P, system as S',
     'from os import (path as P, system as S,)',
     'from os import *',
     ]



More information about the Pypy-commit mailing list