[Python-checkins] r60918 - python/trunk/Lib/distutils/command/sdist.py

andrew.kuchling python-checkins at python.org
Thu Feb 21 15:23:39 CET 2008


Author: andrew.kuchling
Date: Thu Feb 21 15:23:38 2008
New Revision: 60918

Modified:
   python/trunk/Lib/distutils/command/sdist.py
Log:
Close manifest file.
This change doesn't make any difference to CPython, but is a necessary fix for Jython.

Modified: python/trunk/Lib/distutils/command/sdist.py
==============================================================================
--- python/trunk/Lib/distutils/command/sdist.py	(original)
+++ python/trunk/Lib/distutils/command/sdist.py	Thu Feb 21 15:23:38 2008
@@ -383,6 +383,7 @@
             if line[-1] == '\n':
                 line = line[0:-1]
             self.filelist.append(line)
+        manifest.close()
 
     # read_manifest ()
 


More information about the Python-checkins mailing list