summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/bdist.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-03-31 04:53:41 (GMT)
committerGreg Ward <gward@python.net>2000-03-31 04:53:41 (GMT)
commit6b213766d8ded8021ae775e48ff46ae06d7bc11c (patch)
treefcb569b8b42d8f2b4fdd81cb55c870e03b6178cc /Lib/distutils/command/bdist.py
parent6ce00b44405a478039d81a6c096620338b5d03a7 (diff)
downloadcpython-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.py3
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', }