summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2017-05-12 09:31:08 (GMT)
committerGitHub <noreply@github.com>2017-05-12 09:31:08 (GMT)
commitf2e894cfd9b6f5d6aacc276476262d481203030c (patch)
tree5e111eeb812af5282d187cc24087e3cc03747b93 /Misc
parenta5bb62436e25614276ac4b8e252a87f3fcc946cd (diff)
downloadcpython-f2e894cfd9b6f5d6aacc276476262d481203030c.zip
cpython-f2e894cfd9b6f5d6aacc276476262d481203030c.tar.gz
cpython-f2e894cfd9b6f5d6aacc276476262d481203030c.tar.bz2
bpo-30342: Fix sysconfig.is_python_build() on VS9.0 (#1544)
Fix sysconfig.is_python_build() if Python is built with Visual Studio 2008 (VS 9.0).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b52ffc7..4c9f2d3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -42,6 +42,9 @@ Extension Modules
Library
-------
+- bpo-30342: Fix sysconfig.is_python_build() if Python is built with Visual
+ Studio 2008 (VS 9.0).
+
- bpo-29990: Fix range checking in GB18030 decoder. Original patch by Ma Lin.
- bpo-30243: Removed the __init__ methods of _json's scanner and encoder.