summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorC.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>2023-01-09 17:48:24 (GMT)
committerGitHub <noreply@github.com>2023-01-09 17:48:24 (GMT)
commitf08209874e58d0adbb08bd1dba4f58ba63f571c5 (patch)
tree1c9fde558f0677e259031f1900e6486e8cbba374 /Misc
parent36f2329367f3608d15562f1c9e89c50a1bd07b0b (diff)
downloadcpython-f08209874e58d0adbb08bd1dba4f58ba63f571c5.zip
cpython-f08209874e58d0adbb08bd1dba4f58ba63f571c5.tar.gz
cpython-f08209874e58d0adbb08bd1dba4f58ba63f571c5.tar.bz2
gh-99191: Use correct check for MSVC C++ version support in _wmimodule.cpp (GH-100381)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Windows/2022-12-20-18-36-17.gh-issue-99191.0cfRja.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Windows/2022-12-20-18-36-17.gh-issue-99191.0cfRja.rst b/Misc/NEWS.d/next/Windows/2022-12-20-18-36-17.gh-issue-99191.0cfRja.rst
new file mode 100644
index 0000000..57a95ab
--- /dev/null
+++ b/Misc/NEWS.d/next/Windows/2022-12-20-18-36-17.gh-issue-99191.0cfRja.rst
@@ -0,0 +1,2 @@
+Use ``_MSVC_LANG >= 202002L`` instead of less-precise ``_MSC_VER >=1929``
+to more accurately test for C++20 support in :file:`PC/_wmimodule.cpp`.