summaryrefslogtreecommitdiffstats
path: root/Lib/packaging/command
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-06-16 21:34:55 (GMT)
committerÉric Araujo <merwok@netwok.org>2011-06-16 21:34:55 (GMT)
commitb6be20ca337348b7cf2b356f9354a4121627add0 (patch)
tree23cea276dc7e0b5193ebe0951e1d6cde8779af25 /Lib/packaging/command
parent434812d569eef54dd79936e581fc20df57671158 (diff)
downloadcpython-b6be20ca337348b7cf2b356f9354a4121627add0.zip
cpython-b6be20ca337348b7cf2b356f9354a4121627add0.tar.gz
cpython-b6be20ca337348b7cf2b356f9354a4121627add0.tar.bz2
Packaging: remove last mentions and uses of setup.py in the code.
Now only the compatibility layer (in create, util and install) talk about setup.py.
Diffstat (limited to 'Lib/packaging/command')
-rw-r--r--Lib/packaging/command/build_ext.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/Lib/packaging/command/build_ext.py b/Lib/packaging/command/build_ext.py
index 403e5fd..c820336 100644
--- a/Lib/packaging/command/build_ext.py
+++ b/Lib/packaging/command/build_ext.py
@@ -38,7 +38,7 @@ class build_ext(Command):
# XXX thoughts on how to deal with complex command-line options like
# these, i.e. how to make it so fancy_getopt can suck them off the
- # command line and make it look like setup.py defined the appropriate
+ # command line and turn them into the appropriate
# lists of tuples of what-have-you.
# - each command needs a callback to process its command-line options
# - Command.__init__() needs access to its share of the whole
@@ -287,9 +287,6 @@ class build_ext(Command):
def run(self):
from packaging.compiler import new_compiler
- # 'self.extensions', as supplied by setup.py, is a list of
- # Extension instances. See the documentation for Extension (in
- # distutils.extension) for details.
if not self.extensions:
return