summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command
diff options
context:
space:
mode:
authorStefan Krah <skrah@bytereef.org>2013-12-03 12:55:20 (GMT)
committerStefan Krah <skrah@bytereef.org>2013-12-03 12:55:20 (GMT)
commit5aa08ca375d2f0979c40dc58d66f0d630805236a (patch)
tree9cd7b2011bce00bc3c3205b0642c60038459ba5c /Lib/distutils/command
parentdc96ca25df87ebf3ad0a2f29591f186873d40679 (diff)
downloadcpython-5aa08ca375d2f0979c40dc58d66f0d630805236a.zip
cpython-5aa08ca375d2f0979c40dc58d66f0d630805236a.tar.gz
cpython-5aa08ca375d2f0979c40dc58d66f0d630805236a.tar.bz2
Issue #9709: Stop adding PyInit_" + module_name' to export_symbols. This is
already done by PyMODINIT_FUNC.
Diffstat (limited to 'Lib/distutils/command')
-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 80689b6..9be5923 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=self.get_export_symbols(ext),
+ export_symbols=ext.export_symbols,
debug=self.debug,
build_temp=self.build_temp,
target_lang=language)