cpython: 077b42a54803 (original) (raw)

Mercurial > cpython

changeset 75472:077b42a54803 2.7

Backout buggy patch for #13719 [#13719]

Éric Araujo merwok@netwok.org
date Wed, 07 Mar 2012 21:00:44 +0100
parents 1e3c18c923ca
children c7623da4e2af
files Lib/distutils/command/bdist_msi.py Lib/distutils/tests/test_bdist_msi.py Misc/NEWS
diffstat 3 files changed, 1 insertions(+), 12 deletions(-)[+] [-] Lib/distutils/command/bdist_msi.py 2 Lib/distutils/tests/test_bdist_msi.py 9 Misc/NEWS 2

line wrap: on

line diff

--- a/Lib/distutils/command/bdist_msi.py +++ b/Lib/distutils/command/bdist_msi.py @@ -262,7 +262,7 @@ class bdist_msi (Command): self.db.Commit() if hasattr(self.distribution, 'dist_files'):

if not self.keep_temp:

--- a/Lib/distutils/tests/test_bdist_msi.py +++ b/Lib/distutils/tests/test_bdist_msi.py @@ -1,5 +1,4 @@ """Tests for distutils.command.bdist_msi.""" -import os import sys import unittest from test.test_support import run_unittest @@ -17,14 +16,6 @@ class BDistMSITestCase(support.TempdirMa project_dir, dist = self.create_dist() cmd = bdist_msi(dist) cmd.ensure_finalized()

-

-

def test_suite():

--- a/Misc/NEWS +++ b/Misc/NEWS @@ -101,8 +101,6 @@ Core and Builtins Library ------- -- Issue #13719: Make the distutils upload command aware of bdist_msi products. -