diff options
author | Stefan Krah <skrah@bytereef.org> | 2014-01-28 14:04:40 (GMT) |
---|---|---|
committer | Stefan Krah <skrah@bytereef.org> | 2014-01-28 14:04:40 (GMT) |
commit | 748f40d16251a938bb10293943dd9076d800dbaa (patch) | |
tree | 884bfb82c50b22ceeda3923d4268adf72d97048b /Lib/distutils | |
parent | 581ee3618c756132359d98b6fc149ec7e7ca9ef9 (diff) | |
download | cpython-748f40d16251a938bb10293943dd9076d800dbaa.zip cpython-748f40d16251a938bb10293943dd9076d800dbaa.tar.gz cpython-748f40d16251a938bb10293943dd9076d800dbaa.tar.bz2 |
Issue #9709: Revert 97fb852c5c26. Many extensions are not using PyMODINIT_FUNC.
Diffstat (limited to 'Lib/distutils')
-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 9be5923..80689b6 100644 --- a/Lib/distutils/command/build_ext.py +++ b/Lib/distutils/command/build_ext.py @@ -538,7 +538,7 @@ class build_ext(Command): library_dirs=ext.library_dirs, runtime_library_dirs=ext.runtime_library_dirs, extra_postargs=extra_args, - export_symbols=ext.export_symbols, + export_symbols=self.get_export_symbols(ext), debug=self.debug, build_temp=self.build_temp, target_lang=language) |