summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2020-05-12 13:18:00 (GMT)
committerGitHub <noreply@github.com>2020-05-12 13:18:00 (GMT)
commit5650e76f63a6f4ec55d00ec13f143d84a2efee39 (patch)
tree6a3179a1f7b94c3d65985b49c81a5a8fa94e327a /Misc
parent7c6e97077525f0ad3cfa0971028313b9079449fd (diff)
downloadcpython-5650e76f63a6f4ec55d00ec13f143d84a2efee39.zip
cpython-5650e76f63a6f4ec55d00ec13f143d84a2efee39.tar.gz
cpython-5650e76f63a6f4ec55d00ec13f143d84a2efee39.tar.bz2
bpo-40596: Fix str.isidentifier() for non-canonicalized strings containing non-BMP characters on Windows. (GH-20053)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2020-05-11-20-53-52.bpo-40596.dwOH_X.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-05-11-20-53-52.bpo-40596.dwOH_X.rst b/Misc/NEWS.d/next/Core and Builtins/2020-05-11-20-53-52.bpo-40596.dwOH_X.rst
new file mode 100644
index 0000000..1252db4
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2020-05-11-20-53-52.bpo-40596.dwOH_X.rst
@@ -0,0 +1,2 @@
+Fixed :meth:`str.isidentifier` for non-canonicalized strings containing
+non-BMP characters on Windows.