[Python-checkins] CVS: python/dist/src/Lib sgmllib.py,1.30.4.1,1.30.4.2

Tim Peters tim_one@users.sourceforge.net
Sun, 15 Jul 2001 13:26:57 -0700


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

Modified Files:
      Tag: descr-branch
	sgmllib.py 
Log Message:
Merge trunk tag delta date2001-07-13 to date2001-07-15.


Index: sgmllib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/sgmllib.py,v
retrieving revision 1.30.4.1
retrieving revision 1.30.4.2
diff -C2 -r1.30.4.1 -r1.30.4.2
*** sgmllib.py	2001/07/07 22:55:28	1.30.4.1
--- sgmllib.py	2001/07/15 20:26:55	1.30.4.2
***************
*** 37,41 ****
  tagfind = re.compile('[a-zA-Z][-_.a-zA-Z0-9]*')
  attrfind = re.compile(
!     r'\s*([a-zA-Z_][-.a-zA-Z_0-9]*)(\s*=\s*'
      r'(\'[^\']*\'|"[^"]*"|[-a-zA-Z0-9./:;+*%?!&$\(\)_#=~\'"]*))?')
  
--- 37,41 ----
  tagfind = re.compile('[a-zA-Z][-_.a-zA-Z0-9]*')
  attrfind = re.compile(
!     r'\s*([a-zA-Z_][-:.a-zA-Z_0-9]*)(\s*=\s*'
      r'(\'[^\']*\'|"[^"]*"|[-a-zA-Z0-9./:;+*%?!&$\(\)_#=~\'"]*))?')