summaryrefslogtreecommitdiffstats
path: root/Lib/distutils
diff options
context:
space:
mode:
authorStefan Krah <skrah@bytereef.org>2014-01-28 14:04:40 (GMT)
committerStefan Krah <skrah@bytereef.org>2014-01-28 14:04:40 (GMT)
commit748f40d16251a938bb10293943dd9076d800dbaa (patch)
tree884bfb82c50b22ceeda3923d4268adf72d97048b /Lib/distutils
parent581ee3618c756132359d98b6fc149ec7e7ca9ef9 (diff)
downloadcpython-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.py2
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)