summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-12-07 17:50:48 (GMT)
committerGitHub <noreply@github.com>2020-12-07 17:50:48 (GMT)
commitca52aa3ddd949ce2d259b4263344339b56db00b7 (patch)
tree8d06c1e6317ccbb8cc575b0421d05b4126430ff5 /Misc/NEWS.d
parenta4e7d5f750e06e31a80a83c2af02b1a40cecd0ff (diff)
downloadcpython-ca52aa3ddd949ce2d259b4263344339b56db00b7.zip
cpython-ca52aa3ddd949ce2d259b4263344339b56db00b7.tar.gz
cpython-ca52aa3ddd949ce2d259b4263344339b56db00b7.tar.bz2
bpo-39825: Fixes sysconfig.get_config_var('EXT_SUFFIX') on Windows to match distutils (GH-22088)
(cherry picked from commit c0afb7fa0ebd1c0e95c0760bbe75a99a8dd12ea6) Co-authored-by: Matti Picus <matti.picus@gmail.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2020-10-20-08-28-26.bpo-39825.n6KnG0.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-10-20-08-28-26.bpo-39825.n6KnG0.rst b/Misc/NEWS.d/next/Library/2020-10-20-08-28-26.bpo-39825.n6KnG0.rst
new file mode 100644
index 0000000..c337731
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2020-10-20-08-28-26.bpo-39825.n6KnG0.rst
@@ -0,0 +1,5 @@
+Windows: Change ``sysconfig.get_config_var('EXT_SUFFIX')`` to the expected
+full ``platform_tag.extension`` format. Previously it was hard-coded to
+``.pyd``, now it is compatible with ``distutils.sysconfig`` and will result
+in something like ``.cp38-win_amd64.pyd``. This brings windows into
+conformance with the other platforms.