diff options
author | Greg Ward <gward@python.net> | 2000-03-30 19:47:22 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-03-30 19:47:22 (GMT) |
commit | 71d55835b388c7f2621588dc69a9f848c74f4cdd (patch) | |
tree | 15a664f07091a6a4f7c4211fe70748dbb58d6ba2 | |
parent | 88716bba55e4811f6566bc89f320722145f1be07 (diff) | |
download | cpython-71d55835b388c7f2621588dc69a9f848c74f4cdd.zip cpython-71d55835b388c7f2621588dc69a9f848c74f4cdd.tar.gz cpython-71d55835b388c7f2621588dc69a9f848c74f4cdd.tar.bz2 |
Oops: 'build_extensions()' no longer takes an 'extensions' list.
-rw-r--r-- | Lib/distutils/command/build_ext.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py index 96e7ce5..f2e0b31 100644 --- a/Lib/distutils/command/build_ext.py +++ b/Lib/distutils/command/build_ext.py @@ -259,7 +259,7 @@ class build_ext (Command): # get_outputs () - def build_extensions (self, extensions): + def build_extensions (self): # First, sanity-check the 'extensions' list self.check_extensions_list (self.extensions) |