We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3e9d47e + 69a832f commit 2fe57eaCopy full SHA for 2fe57ea
distutils/command/build_ext.py
@@ -721,7 +721,7 @@ def get_export_symbols(self, ext):
721
name = ext.name.split('.')[-1]
722
try:
723
# Unicode module name support as defined in PEP-489
724
- # https://www.python.org/dev/peps/pep-0489/#export-hook-name
+ # https://peps.python.org/pep-0489/#export-hook-name
725
name.encode('ascii')
726
except UnicodeEncodeError:
727
suffix = 'U_' + name.encode('punycode').replace(b'-', b'_').decode('ascii')
0 commit comments