From: Greg Ward Date: Fri, 31 Mar 2000 04:53:41 +0000 (+0000) Subject: Import from 'types' module. X-Git-Tag: v1.6a1~38 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6b213766d8ded8021ae775e48ff46ae06d7bc11c;p=thirdparty%2FPython%2Fcpython.git Import from 'types' module. Added 'ztar', 'tar' to 'format_command' dictionary. --- diff --git a/Lib/distutils/command/bdist.py b/Lib/distutils/command/bdist.py index 5630828580d5..12397fcac194 100644 --- a/Lib/distutils/command/bdist.py +++ b/Lib/distutils/command/bdist.py @@ -8,6 +8,7 @@ distribution).""" __revision__ = "$Id$" import os, string +from types import * from distutils.core import Command @@ -25,6 +26,8 @@ class bdist (Command): 'nt': 'zip', } format_command = { 'gztar': 'bdist_dumb', + 'ztar': 'bdist_dumb', + 'tar': 'bdist_dumb', 'zip': 'bdist_dumb', }