diff options
author | Greg Ward <gward@python.net> | 2000-03-31 04:53:41 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-03-31 04:53:41 (GMT) |
commit | 6b213766d8ded8021ae775e48ff46ae06d7bc11c (patch) | |
tree | fcb569b8b42d8f2b4fdd81cb55c870e03b6178cc /Lib/distutils/command/bdist.py | |
parent | 6ce00b44405a478039d81a6c096620338b5d03a7 (diff) | |
download | cpython-6b213766d8ded8021ae775e48ff46ae06d7bc11c.zip cpython-6b213766d8ded8021ae775e48ff46ae06d7bc11c.tar.gz cpython-6b213766d8ded8021ae775e48ff46ae06d7bc11c.tar.bz2 |
Import from 'types' module.
Added 'ztar', 'tar' to 'format_command' dictionary.
Diffstat (limited to 'Lib/distutils/command/bdist.py')
-rw-r--r-- | Lib/distutils/command/bdist.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/distutils/command/bdist.py b/Lib/distutils/command/bdist.py index 5630828..12397fc 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', } |