# There's a bug in the jpython pattern matching. # The pattern element '+?' is broken. See below # for a demo of how it's broken. I've tested the # same program in CPython and verified that the # problem does not occur there. # # Using jython 2.1 on OS-X 10.2, the following program # demonstrates the problem, by printing the following: # # Matching pattern, r'\w+:', against string, 'my, test; data:', # no match (correct). # Matching pattern, r'\w+?:', against string, 'my, test; data:', # matched... mobj.group()="my, test; data:" (incorrect). # # -- Steve Beisner, beisner@alum.mit.edu # import re def doTest(txt,pat): print "Matching pattern, r'%s', against string, '%s'," % (pat, txt) mobj = re.match(pat,txt) if mobj: print ' matched... mobj.group()="%s" (incorrect).' % mobj.group() else: print ' no match (correct).' text = "my, test; data:" pat1 = r'\w+:' pat2 = r'\w+?:' doTest(text,pat1) doTest(text,pat2)