diff options
author | Steve Dower <steve.dower@python.org> | 2020-03-03 00:04:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-03 00:04:11 (GMT) |
commit | ce3a4984089b8e0ce5422ca32d75ad057b008074 (patch) | |
tree | 6c0c05ae9b8d47047d4304019beb4199586b637c /Misc | |
parent | 0c2b509f9d1d3a9065bc62c2407e1dc2ed70e9c2 (diff) | |
download | cpython-ce3a4984089b8e0ce5422ca32d75ad057b008074.zip cpython-ce3a4984089b8e0ce5422ca32d75ad057b008074.tar.gz cpython-ce3a4984089b8e0ce5422ca32d75ad057b008074.tar.bz2 |
bpo-38597: Never statically link extension initialization code on Windows (GH-18724)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Windows/2020-03-01-15-04-54.bpo-38597.MnHdYl.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Windows/2020-03-01-15-04-54.bpo-38597.MnHdYl.rst b/Misc/NEWS.d/next/Windows/2020-03-01-15-04-54.bpo-38597.MnHdYl.rst new file mode 100644 index 0000000..7f3a2e7 --- /dev/null +++ b/Misc/NEWS.d/next/Windows/2020-03-01-15-04-54.bpo-38597.MnHdYl.rst @@ -0,0 +1,4 @@ +:mod:`distutils` will no longer statically link :file:`vcruntime140.dll` +when a redistributable version is unavailable. All future releases of +CPython will include a copy of this DLL to ensure distributed extensions can +continue to load. |