[Python-checkins] cpython (3.2): Issue #12678: Fix distutils sdist test on Windows.
nadeem.vawda
python-checkins at python.org
Sun Aug 21 22:36:40 CEST 2011
http://hg.python.org/cpython/rev/c8e73a89150e
changeset: 72026:c8e73a89150e
branch: 3.2
parent: 72021:49b4b4ba9f93
user: Nadeem Vawda <nadeem.vawda at gmail.com>
date: Sun Aug 21 22:35:41 2011 +0200
summary:
Issue #12678: Fix distutils sdist test on Windows.
Patch by Jeremy Kloth.
files:
Lib/distutils/tests/test_sdist.py | 1 +
Misc/ACKS | 1 +
2 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/Lib/distutils/tests/test_sdist.py b/Lib/distutils/tests/test_sdist.py
--- a/Lib/distutils/tests/test_sdist.py
+++ b/Lib/distutils/tests/test_sdist.py
@@ -365,6 +365,7 @@
def test_manual_manifest(self):
# check that a MANIFEST without a marker is left alone
dist, cmd = self.get_cmd()
+ cmd.formats = ['gztar']
cmd.ensure_finalized()
self.write_file((self.tmp_dir, cmd.manifest), 'README.manual')
self.write_file((self.tmp_dir, 'README.manual'),
diff --git a/Misc/ACKS b/Misc/ACKS
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -484,6 +484,7 @@
Bastian Kleineidam
Bob Kline
Matthias Klose
+Jeremy Kloth
Kim Knapp
Lenny Kneler
Pat Knight
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list