Revision: 5276
http://jython.svn.sourceforge.net/jython/?rev=5276&view=rev
Author: fwierzbicki
Date: 2008-08-31 01:00:57 +0000 (Sun, 31 Aug 2008)
Log Message:
-----------
Test for more than 2 dotted_attr. See http://bugs.jython.org/issue1116.
Modified Paths:
--------------
trunk/jython/Lib/test/test_jy_compile.py
Modified: trunk/jython/Lib/test/test_jy_compile.py
===================================================================
--- trunk/jython/Lib/test/test_jy_compile.py 2008-08-31 00:31:36 UTC (rev 5275)
+++ trunk/jython/Lib/test/test_jy_compile.py 2008-08-31 01:00:57 UTC (rev 5276)
@@ -93,6 +93,9 @@
# this failed under 2.2.1
av("def f():\n try: pass\n finally: [x for x in (1,2)]")
+ # Failed for Jython 2.5a2. See http://bugs.jython.org/issue1116.
+ av("@a.b.c\ndef f():\n pass")
+
def test_incomplete(self):
ai = self.assertIncomplete
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|