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

Neal Norwitz nnorwitz@users.sourceforge.net
Tue, 26 Mar 2002 08:23:31 -0800


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

Modified Files:
	xmlrpclib.py 
Log Message:
re was already imported in the module, no need to re-import

Index: xmlrpclib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/xmlrpclib.py,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** xmlrpclib.py	19 Dec 2001 21:40:04 -0000	1.15
--- xmlrpclib.py	26 Mar 2002 16:23:28 -0000	1.16
***************
*** 354,358 ****
  
          def handle_proc(self, tag, attr):
-             import re
              m = re.search("encoding\s*=\s*['\"]([^\"']+)[\"']", attr)
              if m:
--- 354,357 ----