mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Import the new Extension class, so setup scripts can
"from distutils.core import" it.
This commit is contained in:
parent
5322f008c5
commit
a76bbd4566
1 changed files with 4 additions and 0 deletions
|
@ -12,8 +12,12 @@ __revision__ = "$Id$"
|
|||
import sys, os
|
||||
from types import *
|
||||
from distutils.errors import *
|
||||
|
||||
# Mainly import these so setup scripts can "from distutils.core import" them.
|
||||
from distutils.dist import Distribution
|
||||
from distutils.cmd import Command
|
||||
from distutils.extension import Extension
|
||||
|
||||
|
||||
# This is a barebones help message generated displayed when the user
|
||||
# runs the setup script with no arguments at all. More useful help
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue