[Python-checkins] cpython: Issue #9709: Stop adding PyInit_" + module_name' to export_symbols. This is

stefan.krah python-checkins at python.org
Tue Dec 3 13:55:55 CET 2013


http://hg.python.org/cpython/rev/97fb852c5c26
changeset:   87737:97fb852c5c26
user:        Stefan Krah <skrah at bytereef.org>
date:        Tue Dec 03 13:55:20 2013 +0100
summary:
  Issue #9709: Stop adding PyInit_" + module_name' to export_symbols.  This is
already done by PyMODINIT_FUNC.

files:
  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
--- a/Lib/distutils/command/build_ext.py
+++ b/Lib/distutils/command/build_ext.py
@@ -538,7 +538,7 @@
             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)

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list