From: <fwi...@us...> - 2008-10-15 20:44:24
|
Revision: 5408 http://jython.svn.sourceforge.net/jython/?rev=5408&view=rev Author: fwierzbicki Date: 2008-10-15 20:44:08 +0000 (Wed, 15 Oct 2008) Log Message: ----------- This basic re functionality is well tested in our existing unit tests. Removed Paths: ------------- trunk/jython/bugtests/test085.py Deleted: trunk/jython/bugtests/test085.py =================================================================== --- trunk/jython/bugtests/test085.py 2008-10-15 20:42:47 UTC (rev 5407) +++ trunk/jython/bugtests/test085.py 2008-10-15 20:44:08 UTC (rev 5408) @@ -1,17 +0,0 @@ -""" - -""" - -import support - -import re - -x = re.compile(r"(?P<first>.*),(?P<second>.*)") -y = x.search("hello,there") - -support.compare(y.group("first"), "hello") -support.compare(y.group("second"), "there") -support.compare(y.group(1), "hello") -support.compare(y.group(2), "there") - - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |