[Python-checkins] CVS: python/dist/src/Lib/test/output test_sre,1.5,1.6

Fredrik Lundh python-dev@python.org
Mon, 3 Jul 2000 14:31:51 -0700


Update of /cvsroot/python/python/dist/src/Lib/test/output
In directory slayer.i.sourceforge.net:/tmp/cvs-serv28299/Lib/test/output

Modified Files:
	test_sre 
Log Message:


- fixed grouping error bug

- changed "group" operator to "groupref"


Index: test_sre
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/output/test_sre,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** test_sre	2000/06/30 18:39:20	1.5
--- test_sre	2000/07/03 21:31:48	1.6
***************
*** 2,7 ****
  === Failed incorrectly ('^(.+)?B', 'AB', 0, 'g1', 'A')
  === Failed incorrectly ('(a+)+\\1', 'aa', 0, 'found+"-"+g1', 'aa-a')
- === grouping error ('([^/]*/)*sub1/', 'd:msgs/tdir/sub1/trial/away.cpp', 0, 'found+"-"+g1', 'd:msgs/tdir/sub1/-tdir/') 'd:msgs/tdir/sub1/-trial/' should be 'd:msgs/tdir/sub1/-tdir/'
- === grouping error ('([abc])*bcd', 'abcd', 0, 'found+"-"+g1', 'abcd-a') 'abcd-c' should be 'abcd-a'
- === grouping error ('(?i)([abc])*bcd', 'ABCD', 0, 'found+"-"+g1', 'ABCD-A') 'ABCD-C' should be 'ABCD-A'
  === Failed incorrectly ('^(.+)?B', 'AB', 0, 'g1', 'A')
--- 2,4 ----