0
0
mirror of https://github.com/python/cpython.git synced 2024-11-28 08:20:55 +01:00

Import from 'types' module.

Added 'ztar', 'tar' to 'format_command' dictionary.
This commit is contained in:
Greg Ward 2000-03-31 04:53:41 +00:00
parent 6ce00b4440
commit 6b213766d8

View File

@ -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', }