mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Import from 'types' module.
Added 'ztar', 'tar' to 'format_command' dictionary.
This commit is contained in:
parent
6ce00b4440
commit
6b213766d8
1 changed files with 3 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue