summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMax BĂ©langer <aeromax@gmail.com>2018-11-04 23:58:24 (GMT)
committerBenjamin Peterson <benjamin@python.org>2018-11-04 23:58:24 (GMT)
commit2810dd7be9876236f74ac80716d113572c9098dd (patch)
tree796f4fed255575ae6ad652b01750903e3857e125 /Misc
parent5d236cafd7126e640fb25541fcc7e0a494450143 (diff)
downloadcpython-2810dd7be9876236f74ac80716d113572c9098dd.zip
cpython-2810dd7be9876236f74ac80716d113572c9098dd.tar.gz
cpython-2810dd7be9876236f74ac80716d113572c9098dd.tar.bz2
closes bpo-32285: Add unicodedata.is_normalized. (GH-4806)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2017-12-12-13-43-13.bpo-32285.LzKSwz.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2017-12-12-13-43-13.bpo-32285.LzKSwz.rst b/Misc/NEWS.d/next/Core and Builtins/2017-12-12-13-43-13.bpo-32285.LzKSwz.rst
new file mode 100644
index 0000000..87f84b0
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2017-12-12-13-43-13.bpo-32285.LzKSwz.rst
@@ -0,0 +1,2 @@
+New function unicodedata.is_normalized, which can check whether a string is
+in a specific normal form.