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:
parent
6ce00b4440
commit
6b213766d8
@ -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', }
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user