Skip to content

Commit 2fe57ea

Browse files
authored
Merge pull request #198 from hugovk/pep-redirect
Link directly to PEP
2 parents 3e9d47e + 69a832f commit 2fe57ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

distutils/command/build_ext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -721,7 +721,7 @@ def get_export_symbols(self, ext):
721721
name = ext.name.split('.')[-1]
722722
try:
723723
# Unicode module name support as defined in PEP-489
724-
# https://www.python.org/dev/peps/pep-0489/#export-hook-name
724+
# https://peps.python.org/pep-0489/#export-hook-name
725725
name.encode('ascii')
726726
except UnicodeEncodeError:
727727
suffix = 'U_' + name.encode('punycode').replace(b'-', b'_').decode('ascii')

0 commit comments

Comments
 (0)