diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-09-15 06:53:47 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-09-15 06:53:47 (GMT) |
commit | 67752315979e1501b7088273b5a1aecc90b6fe67 (patch) | |
tree | d58ae750065bdff2b4f14e4fe8e627517d1622bc /Doc/whatsnew | |
parent | 7ec64562b243f3b44a876a346f658a1d4a66a95a (diff) | |
download | cpython-67752315979e1501b7088273b5a1aecc90b6fe67.zip cpython-67752315979e1501b7088273b5a1aecc90b6fe67.tar.gz cpython-67752315979e1501b7088273b5a1aecc90b6fe67.tar.bz2 |
Unicode 9.0.0
Not completely mechanical since support for East Asian Width changes—emoji
codepoints became Wide—had to be added to unicodedata.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.6.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst index 3cfb956..b52194b 100644 --- a/Doc/whatsnew/3.6.rst +++ b/Doc/whatsnew/3.6.rst @@ -966,6 +966,13 @@ representing :class:`contextlib.AbstractContextManager`. (Contributed by Brett Cannon in :issue:`25609`.) +unicodedata +----------- + +The internal database has been upgraded to use Unicode 9.0.0. (Contributed by +Benjamin Peterson.) + + unittest.mock ------------- |