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

Fredrik Lundh python-dev@python.org
Sun, 23 Jul 2000 14:46:21 -0700


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

Modified Files:
	test_sre 
Log Message:


-- SRE 0.9.6 sync.  this includes:

 + added "regs" attribute
 + fixed "pos" and "endpos" attributes
 + reset "lastindex" and "lastgroup" in scanner methods
 + removed (?P#id) syntax; the "lastindex" and "lastgroup"
   attributes are now always set
 + removed string module dependencies in sre_parse
 + better debugging support in sre_parse
 + various tweaks to build under 1.5.2


Index: test_sre
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/output/test_sre,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** test_sre	2000/07/03 21:31:48	1.6
--- test_sre	2000/07/23 21:46:17	1.7
***************
*** 2,4 ****
--- 2,6 ----
  === Failed incorrectly ('^(.+)?B', 'AB', 0, 'g1', 'A')
  === Failed incorrectly ('(a+)+\\1', 'aa', 0, 'found+"-"+g1', 'aa-a')
+ === grouping error ('(a)(b)c|ab', 'ab', 0, 'found+"-"+g1+"-"+g2', 'ab-None-None') 'ab-None-b' should be 'ab-None-None'
+ === grouping error ('(a)+b|aac', 'aac', 0, 'found+"-"+g1', 'aac-None') 'aac-a' should be 'aac-None'
  === Failed incorrectly ('^(.+)?B', 'AB', 0, 'g1', 'A')