From 2d6c13e733c0850723a30254eb8b89fd8515c4f8 Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Thu, 21 Feb 2008 14:23:38 +0000 Subject: [PATCH] Close manifest file. This change doesn't make any difference to CPython, but is a necessary fix for Jython. --- Lib/distutils/command/sdist.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/distutils/command/sdist.py b/Lib/distutils/command/sdist.py index 3dfe6f21a7..a06b1953b4 100644 --- a/Lib/distutils/command/sdist.py +++ b/Lib/distutils/command/sdist.py @@ -383,6 +383,7 @@ class sdist (Command): if line[-1] == '\n': line = line[0:-1] self.filelist.append(line) + manifest.close() # read_manifest () -- 2.50.1