diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-11-17 00:48:06 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-11-17 00:48:06 (GMT) |
commit | d136aecd1f5281142f9d29c988838c23426281b6 (patch) | |
tree | 71f13001e5d4f8b5ba8f31118ce2a424451b7d51 | |
parent | 74168975cc9489e5f726d804cf51f36fd7e0a510 (diff) | |
download | cpython-d136aecd1f5281142f9d29c988838c23426281b6.zip cpython-d136aecd1f5281142f9d29c988838c23426281b6.tar.gz cpython-d136aecd1f5281142f9d29c988838c23426281b6.tar.bz2 |
Be a bit less shy
-rw-r--r-- | Doc/whatsnew/3.3.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index 0351671..6a31fa3 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -102,7 +102,7 @@ Changes introduced by :pep:`393` are the following: * indexing or slicing non-BMP characters returns the expected value, so ``'\U0010FFFF'[0]`` now returns ``'\U0010FFFF'`` and not ``'\uDBFF'``; - * several other functions in the standard library now handle correctly + * all other functions in the standard library now correctly handle non-BMP codepoints. * The value of :data:`sys.maxunicode` is now always ``1114111`` (``0x10FFFF`` |