[Python-checkins] cpython (3.2): Issue #12678: Fix distutils sdist test on Windows.

georg.brandl python-checkins at python.org
Sun Sep 4 08:42:43 CEST 2011


http://hg.python.org/cpython/rev/6fe19f421a16
changeset:   72258:6fe19f421a16
branch:      3.2
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