diff options
author | Stefan Behnel <stefan_ml@behnel.de> | 2020-02-04 15:24:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-04 15:24:30 (GMT) |
commit | 9538bc9185e934bee2bd5ae2cda2b2e92a61906d (patch) | |
tree | 17b2427bb0f49b48e30d9d18d31736d14a9405a3 /Misc | |
parent | 850a4bd839ca11b59439e21dda2a3ebe917a9a16 (diff) | |
download | cpython-9538bc9185e934bee2bd5ae2cda2b2e92a61906d.zip cpython-9538bc9185e934bee2bd5ae2cda2b2e92a61906d.tar.gz cpython-9538bc9185e934bee2bd5ae2cda2b2e92a61906d.tar.bz2 |
bpo-39432: Implement PEP-489 algorithm for non-ascii "PyInit_*" symbol names in distutils (GH-18150)
Make it export the correct init symbol also on Windows.
https://bugs.python.org/issue39432
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-01-23-16-08-58.bpo-39432.Cee6mi.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-01-23-16-08-58.bpo-39432.Cee6mi.rst b/Misc/NEWS.d/next/Library/2020-01-23-16-08-58.bpo-39432.Cee6mi.rst new file mode 100644 index 0000000..21c4ba8 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-01-23-16-08-58.bpo-39432.Cee6mi.rst @@ -0,0 +1 @@ +Implement PEP-489 algorithm for non-ascii "PyInit\_..." symbol names in distutils to make it export the correct init symbol also on Windows. |