[Python-checkins] CVS: python/dist/src/Lib/email Generator.py,1.6,1.7

Barry Warsaw bwarsaw@users.sourceforge.net
Sun, 03 Mar 2002 14:46:48 -0800


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

Modified Files:
	Generator.py 
Log Message:
Removed two unused imports.  Closes patch #525225.

2.2.1 candidate (but not terribly important).


Index: Generator.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/email/Generator.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** Generator.py	19 Oct 2001 04:06:39 -0000	1.6
--- Generator.py	3 Mar 2002 22:46:46 -0000	1.7
***************
*** 12,19 ****
  from cStringIO import StringIO
  
- # Intrapackage imports
- import Message
- import Errors
- 
  EMPTYSTRING = ''
  SEMISPACE = '; '
--- 12,15 ----