[Python-checkins] CVS: python/dist/src/Lib/test test_sre.py,1.15,1.16

Fredrik Lundh python-dev@python.org
Sun, 14 Jan 2001 07:15:41 -0800


Update of /cvsroot/python/python/dist/src/Lib/test
In directory usw-pr-cvs1:/tmp/cvs-serv32767/Lib/test

Modified Files:
	test_sre.py 
Log Message:


reapplied Fred's "recommended style" patch...


Index: test_sre.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_sre.py,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -r1.15 -r1.16
*** test_sre.py	2001/01/14 15:06:11	1.15
--- test_sre.py	2001/01/14 15:15:37	1.16
***************
*** 48,57 ****
  
  for i in [0, 8, 16, 32, 64, 127, 128, 255]:
!     test(r"""sre.match(r"\%03o" % i, chr(i)) != None""", 1)
!     test(r"""sre.match(r"\%03o0" % i, chr(i)+"0") != None""", 1)
!     test(r"""sre.match(r"\%03o8" % i, chr(i)+"8") != None""", 1)
!     test(r"""sre.match(r"\x%02x" % i, chr(i)) != None""", 1)
!     test(r"""sre.match(r"\x%02x0" % i, chr(i)+"0") != None""", 1)
!     test(r"""sre.match(r"\x%02xz" % i, chr(i)+"z") != None""", 1)
  test(r"""sre.match("\911", "")""", None, sre.error)
  
--- 48,57 ----
  
  for i in [0, 8, 16, 32, 64, 127, 128, 255]:
!     test(r"""sre.match(r"\%03o" % i, chr(i)) is not None""", 1)
!     test(r"""sre.match(r"\%03o0" % i, chr(i)+"0") is not None""", 1)
!     test(r"""sre.match(r"\%03o8" % i, chr(i)+"8") is not None""", 1)
!     test(r"""sre.match(r"\x%02x" % i, chr(i)) is not None""", 1)
!     test(r"""sre.match(r"\x%02x0" % i, chr(i)+"0") is not None""", 1)
!     test(r"""sre.match(r"\x%02xz" % i, chr(i)+"z") is not None""", 1)
  test(r"""sre.match("\911", "")""", None, sre.error)
  
***************
*** 198,206 ****
  for i in range(0, 256):
      p = p + chr(i)
!     test(r"""sre.match(sre.escape(chr(i)), chr(i)) != None""", 1)
      test(r"""sre.match(sre.escape(chr(i)), chr(i)).span()""", (0,1))
  
  pat = sre.compile(sre.escape(p))
! test(r"""pat.match(p) != None""", 1)
  test(r"""pat.match(p).span()""", (0,256))
  
--- 198,206 ----
  for i in range(0, 256):
      p = p + chr(i)
!     test(r"""sre.match(sre.escape(chr(i)), chr(i)) is not None""", 1)
      test(r"""sre.match(sre.escape(chr(i)), chr(i)).span()""", (0,1))
  
  pat = sre.compile(sre.escape(p))
! test(r"""pat.match(p) is not None""", 1)
  test(r"""pat.match(p).span()""", (0,256))