[Python-checkins] CVS: python/dist/src/Lib ftplib.py,1.52,1.53

Jeremy Hylton jhylton@users.sourceforge.net
Sun, 08 Apr 2001 21:31:52 -0700


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

Modified Files:
	ftplib.py 
Log Message:
remove global decl about unused variable


Index: ftplib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/ftplib.py,v
retrieving revision 1.52
retrieving revision 1.53
diff -C2 -r1.52 -r1.53
*** ftplib.py	2001/02/28 21:46:37	1.52
--- ftplib.py	2001/04/09 04:31:50	1.53
***************
*** 246,250 ****
      def makeport(self):
          '''Create a new socket and send a PORT command for it.'''
-         global nextport
          sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
          sock.bind(('', 0))
--- 246,249 ----