diff options
| author | Nadeem Vawda <nadeem.vawda@gmail.com> | 2011-08-21 22:35:41 +0200 |
|---|---|---|
| committer | Nadeem Vawda <nadeem.vawda@gmail.com> | 2011-08-21 22:35:41 +0200 |
| commit | ce9da2ffa6fefe772f1a4209f01ef12e7d5d8cc5 (patch) | |
| tree | 2df5c4bb78b5cc56f5c1a680fded89221c9c06e8 | |
| parent | a031abc166e2426a90d838a8106abe3148965404 (diff) | |
| download | cpython-git-ce9da2ffa6fefe772f1a4209f01ef12e7d5d8cc5.tar.gz | |
Issue #12678: Fix distutils sdist test on Windows.
Patch by Jeremy Kloth.
| -rw-r--r-- | Lib/distutils/tests/test_sdist.py | 1 | ||||
| -rw-r--r-- | 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 index 440af9886c..f34f786c92 100644 --- a/Lib/distutils/tests/test_sdist.py +++ b/Lib/distutils/tests/test_sdist.py @@ -365,6 +365,7 @@ class SDistTestCase(PyPIRCCommandTestCase): 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'), @@ -484,6 +484,7 @@ Reid Kleckner Bastian Kleineidam Bob Kline Matthias Klose +Jeremy Kloth Kim Knapp Lenny Kneler Pat Knight |
