summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/extension.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2003-01-27 16:30:36 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2003-01-27 16:30:36 (GMT)
commit6ffdaab808d07d6bd60470614891e5b24e300be6 (patch)
tree7c8a681895238e337cc322633383c85d0a877e5d /Lib/distutils/extension.py
parentbf5170793c7569d648b8cd89a2275768c78d821f (diff)
downloadcpython-6ffdaab808d07d6bd60470614891e5b24e300be6.zip
cpython-6ffdaab808d07d6bd60470614891e5b24e300be6.tar.gz
cpython-6ffdaab808d07d6bd60470614891e5b24e300be6.tar.bz2
Remove the recently-added get_distutil_options(), and just
have two tuples listing the legal keywords for setup() and Extension()
Diffstat (limited to 'Lib/distutils/extension.py')
-rw-r--r--Lib/distutils/extension.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/distutils/extension.py b/Lib/distutils/extension.py
index 94b56e6..e69f3e9 100644
--- a/Lib/distutils/extension.py
+++ b/Lib/distutils/extension.py
@@ -82,6 +82,8 @@ class Extension:
from the source extensions if not provided.
"""
+ # When adding arguments to this constructor, be sure to update
+ # setup_keywords in core.py.
def __init__ (self, name, sources,
include_dirs=None,
define_macros=None,