[Python-checkins] CVS: python/dist/src/Lib ConfigParser.py,1.33,1.34 Cookie.py,1.10,1.11 codecs.py,1.20,1.21 multifile.py,1.17,1.18 pipes.py,1.10,1.11 pyclbr.py,1.19,1.20 sgmllib.py,1.36,1.37 urllib2.py,1.15,1.16

Martin v. L?wis loewis@users.sourceforge.net
Thu, 02 Aug 2001 00:15:31 -0700


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

Modified Files:
	ConfigParser.py Cookie.py codecs.py multifile.py pipes.py 
	pyclbr.py sgmllib.py urllib2.py 
Log Message:
Patch #444359: Remove unused imports.


Index: ConfigParser.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/ConfigParser.py,v
retrieving revision 1.33
retrieving revision 1.34
diff -C2 -d -r1.33 -r1.34
*** ConfigParser.py	2001/07/06 17:22:48	1.33
--- ConfigParser.py	2001/08/02 07:15:29	1.34
***************
*** 86,90 ****
  """
  
- import sys
  import string
  import re
--- 86,89 ----

Index: Cookie.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/Cookie.py,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** Cookie.py	2001/07/20 18:54:44	1.10
--- Cookie.py	2001/08/02 07:15:29	1.11
***************
*** 216,220 ****
  # Import our required modules
  #
! import string, sys
  from UserDict import UserDict
  
--- 216,220 ----
  # Import our required modules
  #
! import string
  from UserDict import UserDict
  

Index: codecs.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/codecs.py,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** codecs.py	2001/07/31 08:54:55	1.20
--- codecs.py	2001/08/02 07:15:29	1.21
***************
*** 8,12 ****
  """#"
  
! import struct, types, __builtin__
  
  ### Registry and builtin stateless codec functions
--- 8,12 ----
  """#"
  
! import struct, __builtin__
  
  ### Registry and builtin stateless codec functions

Index: multifile.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/multifile.py,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** multifile.py	2001/03/12 02:56:15	1.17
--- multifile.py	2001/08/02 07:15:29	1.18
***************
*** 28,33 ****
  """
  
- import sys
- 
  __all__ = ["MultiFile","Error"]
  
--- 28,31 ----

Index: pipes.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/pipes.py,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** pipes.py	2001/07/20 18:53:34	1.10
--- pipes.py	2001/08/02 07:15:29	1.11
***************
*** 60,64 ****
  
  
- import sys
  import re
  
--- 60,63 ----

Index: pyclbr.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/pyclbr.py,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** pyclbr.py	2001/02/12 02:00:42	1.19
--- pyclbr.py	2001/08/02 07:15:29	1.20
***************
*** 54,58 ****
  """
  
- import os
  import sys
  import imp
--- 54,57 ----

Index: sgmllib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/sgmllib.py,v
retrieving revision 1.36
retrieving revision 1.37
diff -C2 -d -r1.36 -r1.37
*** sgmllib.py	2001/07/19 20:57:23	1.36
--- sgmllib.py	2001/08/02 07:15:29	1.37
***************
*** 11,15 ****
  
  import re
- import string
  
  __all__ = ["SGMLParser"]
--- 11,14 ----

Index: urllib2.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/urllib2.py,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** urllib2.py	2001/07/04 05:18:29	1.15
--- urllib2.py	2001/08/02 07:15:29	1.16
***************
*** 89,93 ****
  
  import socket
- import UserDict
  import httplib
  import re
--- 89,92 ----