[Python-checkins] python/dist/src/Lib re.py,1.43,1.44

gvanrossum@users.sourceforge.net gvanrossum@users.sourceforge.net
Sun, 28 Jul 2002 12:04:10 -0700


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

Modified Files:
	re.py 
Log Message:
Add 'engine' back.  IDLE used this, others might have copied it from
there.


Index: re.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/re.py,v
retrieving revision 1.43
retrieving revision 1.44
diff -C2 -d -r1.43 -r1.44
*** re.py	16 Apr 2002 01:38:39 -0000	1.43
--- re.py	28 Jul 2002 19:04:07 -0000	1.44
***************
*** 17,20 ****
--- 17,22 ----
  #
  
+ engine = "sre" # Some apps might use this undocumented variable
+ 
  from sre import *
  from sre import __all__