From: Greg Ward Date: Wed, 31 May 2000 01:11:20 +0000 (+0000) Subject: Import the new Extension class, so setup scripts can X-Git-Tag: v2.0b1~1630 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a76bbd4566dce750c22df7f1e9e5bcc24e295aaf;p=thirdparty%2FPython%2Fcpython.git Import the new Extension class, so setup scripts can "from distutils.core import" it. --- diff --git a/Lib/distutils/core.py b/Lib/distutils/core.py index 15a88147124a..890360392532 100644 --- a/Lib/distutils/core.py +++ b/Lib/distutils/core.py @@ -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