[Python-checkins] python/dist/src/Lib codecs.py,1.30,1.31

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Mon, 30 Dec 2002 15:36:04 -0800


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

Modified Files:
	codecs.py 
Log Message:
sys was already imported, remove second import

Index: codecs.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/codecs.py,v
retrieving revision 1.30
retrieving revision 1.31
diff -C2 -d -r1.30 -r1.31
*** codecs.py	12 Dec 2002 17:37:49 -0000	1.30
--- codecs.py	30 Dec 2002 23:36:02 -0000	1.31
***************
*** 706,711 ****
  if __name__ == '__main__':
  
-     import sys
- 
      # Make stdout translate Latin-1 output into UTF-8 output
      sys.stdout = EncodedFile(sys.stdout, 'latin-1', 'utf-8')
--- 706,709 ----