From: <pj...@us...> - 2009-04-17 02:22:35
|
Revision: 6234 http://jython.svn.sourceforge.net/jython/?rev=6234&view=rev Author: pjenvey Date: 2009-04-17 01:38:24 +0000 (Fri, 17 Apr 2009) Log Message: ----------- rename eof_fodder7 to match other SyntaxError'ing tests. avoids test_compiler from randomly importing it Modified Paths: -------------- trunk/jython/Lib/test/test_eof_jy.py Added Paths: ----------- trunk/jython/Lib/test/badsyntax_eof1.py Removed Paths: ------------- trunk/jython/Lib/test/eof_fodder7.py Copied: trunk/jython/Lib/test/badsyntax_eof1.py (from rev 6223, trunk/jython/Lib/test/eof_fodder7.py) =================================================================== --- trunk/jython/Lib/test/badsyntax_eof1.py (rev 0) +++ trunk/jython/Lib/test/badsyntax_eof1.py 2009-04-17 01:38:24 UTC (rev 6234) @@ -0,0 +1,5 @@ +def hi(): + pass + +def bye(): + hi( Deleted: trunk/jython/Lib/test/eof_fodder7.py =================================================================== --- trunk/jython/Lib/test/eof_fodder7.py 2009-04-17 01:35:16 UTC (rev 6233) +++ trunk/jython/Lib/test/eof_fodder7.py 2009-04-17 01:38:24 UTC (rev 6234) @@ -1,5 +0,0 @@ -def hi(): - pass - -def bye(): - hi( Modified: trunk/jython/Lib/test/test_eof_jy.py =================================================================== --- trunk/jython/Lib/test/test_eof_jy.py 2009-04-17 01:35:16 UTC (rev 6233) +++ trunk/jython/Lib/test/test_eof_jy.py 2009-04-17 01:38:24 UTC (rev 6234) @@ -47,7 +47,7 @@ def test_trailing_paren(self): try: - import eof_fodder7 + import badsyntax_eof1 except SyntaxError, cause: self.assertEquals(cause.lineno, 5) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |