This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author evandrocoan
Recipients dstufft, eric.araujo, evandrocoan, p-ganssle, paul.moore, ronaldoussoren, steve.dower, tim.golden, zach.ware
Date 2019-05-18.22:34:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1558218874.7.0.482964158567.issue35893@roundup.psfhosted.org>
In-reply-to
Content
It is missing the import on:

#START
from distutils.command import build_ext

def get_export_symbols(self, ext):
    parts = ext.name.split(".")
    print('parts', parts)
    if parts[-1] == "__init__":
        initfunc_name = "PyInit_" + parts[-2]
    else:
        initfunc_name = "PyInit_" + parts[-1]

build_ext.build_ext.get_export_symbols = get_export_symbols
#END
History
Date User Action Args
2019-05-18 22:34:34evandrocoansetrecipients: + evandrocoan, paul.moore, ronaldoussoren, tim.golden, eric.araujo, zach.ware, steve.dower, dstufft, p-ganssle
2019-05-18 22:34:34evandrocoansetmessageid: <1558218874.7.0.482964158567.issue35893@roundup.psfhosted.org>
2019-05-18 22:34:34evandrocoanlinkissue35893 messages
2019-05-18 22:34:34evandrocoancreate