diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-10-23 21:44:03 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-10-23 21:44:03 (GMT) |
commit | 2d99dac479fe89a2cbc616cc9c99b5d37c105d24 (patch) | |
tree | 68ff272b25a34078ebe5e91524a93a983b540471 /Doc | |
parent | dcbb822c08e75dbb45afe1c435af95961f22387a (diff) | |
download | cpython-2d99dac479fe89a2cbc616cc9c99b5d37c105d24.zip cpython-2d99dac479fe89a2cbc616cc9c99b5d37c105d24.tar.gz cpython-2d99dac479fe89a2cbc616cc9c99b5d37c105d24.tar.bz2 |
Use ``...`` for string literals.
Diffstat (limited to 'Doc')
-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 8ee5071..78fae2f 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -180,7 +180,7 @@ Some smaller changes made to the core Python language are: * Stub Added support for Unicode name aliases and named sequences. -Both :func:`unicodedata.lookup()` and ``\N{...}`` now resolve name aliases, +Both :func:`unicodedata.lookup()` and ``'\N{...}'`` now resolve name aliases, and :func:`unicodedata.lookup()` resolves named sequences too. (Contributed by Ezio Melotti in :issue:`12753`) |