From: Martin v. Löwis Date: Mon, 24 Mar 2008 00:52:58 +0000 (+0000) Subject: Stop including 2to3 in Tools, as it is in Lib now. X-Git-Tag: v3.0a4~78 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f8bba8e843451ac479633fe641345ade21149c44;p=thirdparty%2FPython%2Fcpython.git Stop including 2to3 in Tools, as it is in Lib now. --- diff --git a/.hgsvnexternals b/.hgsvnexternals deleted file mode 100644 index 28567dcc0457..000000000000 --- a/.hgsvnexternals +++ /dev/null @@ -1,2 +0,0 @@ -[Tools] - 2to3 http://svn.python.org/projects/sandbox/trunk/2to3/ diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index 1b7667d97ddd..08b759c14901 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -1073,7 +1073,7 @@ def add_files(db): # Add tools tools.set_current() tooldir = PyDirectory(db, cab, root, "Tools", "Tools", "TOOLS|Tools") - for f in ['i18n', 'pynche', 'Scripts', 'versioncheck', 'webchecker', '2to3']: + for f in ['i18n', 'pynche', 'Scripts', 'versioncheck', 'webchecker']: lib = PyDirectory(db, cab, tooldir, f, f, "%s|%s" % (tooldir.make_short(f), f)) lib.glob("*.py") lib.glob("*.pyw", exclude=['pydocgui.pyw'])