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

Fredrik Lundh python-dev@python.org
Fri, 30 Jun 2000 03:41:33 -0700


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

Modified Files:
	test_sre 
Log Message:

- fixed lookahead assertions (#10, #11, #12)

- untabified sre_constants.py

Index: test_sre
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/output/test_sre,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** test_sre	2000/06/30 09:13:06	1.2
--- test_sre	2000/06/30 10:41:31	1.3
***************
*** 7,12 ****
  === 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'
- === Syntax error: ('a(?!b).', 'abad', 0, 'found', 'ad')
- === Syntax error: ('a(?=d).', 'abad', 0, 'found', 'ad')
- === Syntax error: ('a(?=c|d).', 'abad', 0, 'found', 'ad')
  === Failed incorrectly ('^(.+)?B', 'AB', 0, 'g1', 'A')
--- 7,9 ----