[Python-checkins] CVS: python/dist/src/Lib sre_parse.py,1.30,1.30.2.1

Guido van Rossum python-dev@python.org
Sat, 2 Sep 2000 04:40:12 -0700


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

Modified Files:
      Tag: cnri-16-start
	sre_parse.py 
Log Message:
DIGITS was missing '7'...


Index: sre_parse.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/sre_parse.py,v
retrieving revision 1.30
retrieving revision 1.30.2.1
diff -C2 -r1.30 -r1.30.2.1
*** sre_parse.py	2000/08/07 20:59:04	1.30
--- sre_parse.py	2000/09/02 11:40:09	1.30.2.1
***************
*** 22,26 ****
  REPEAT_CHARS  = "*+?{"
  
! DIGITS = tuple("012345689")
  
  OCTDIGITS = tuple("01234567")
--- 22,26 ----
  REPEAT_CHARS  = "*+?{"
  
! DIGITS = tuple("0123456789")
  
  OCTDIGITS = tuple("01234567")