Kaydet (Commit) a76bbd45 authored tarafından Greg Ward's avatar Greg Ward

Import the new Extension class, so setup scripts can

"from distutils.core import" it.
üst 5322f008
...@@ -12,8 +12,12 @@ __revision__ = "$Id$" ...@@ -12,8 +12,12 @@ __revision__ = "$Id$"
import sys, os import sys, os
from types import * from types import *
from distutils.errors import * from distutils.errors import *
# Mainly import these so setup scripts can "from distutils.core import" them.
from distutils.dist import Distribution from distutils.dist import Distribution
from distutils.cmd import Command from distutils.cmd import Command
from distutils.extension import Extension
# This is a barebones help message generated displayed when the user # This is a barebones help message generated displayed when the user
# runs the setup script with no arguments at all. More useful help # runs the setup script with no arguments at all. More useful help
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment