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 da-woods
Recipients da-woods, dstufft, eric.araujo
Date 2020-01-23.13:48:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1579787295.61.0.899007188072.issue39432@roundup.psfhosted.org>
In-reply-to
Content
Distuitls generates "export symbols" for extension modules to help ensure that they have have the correct linkage on Windows.

https://github.com/python/cpython/blob/0d30ae1a03102de07758650af9243fd31211325a/Lib/distutils/command/build_ext.py#L692

It generates the correct symbol in most causes, but if the filename contains unicode characters then it creates the wrong symbol, causing linkage errors.

The behaviour should be updated to reflect PEP-489: https://www.python.org/dev/peps/pep-0489/#export-hook-name
History
Date User Action Args
2020-01-23 13:48:15da-woodssetrecipients: + da-woods, eric.araujo, dstufft
2020-01-23 13:48:15da-woodssetmessageid: <1579787295.61.0.899007188072.issue39432@roundup.psfhosted.org>
2020-01-23 13:48:15da-woodslinkissue39432 messages
2020-01-23 13:48:15da-woodscreate