[Python-checkins] cpython: try to pick a unicode char that latex understands
benjamin.peterson
python-checkins at python.org
Tue Sep 2 00:04:08 CEST 2014
http://hg.python.org/cpython/rev/6f65c9d11cc7
changeset: 92299:6f65c9d11cc7
user: Benjamin Peterson <benjamin at python.org>
date: Mon Sep 01 18:04:02 2014 -0400
summary:
try to pick a unicode char that latex understands
files:
Doc/library/functions.rst | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -158,7 +158,7 @@
Return the string representing a character whose Unicode codepoint is the
integer *i*. For example, ``chr(97)`` returns the string ``'a'``, while
- ``chr(9731)`` returns the string ``'☃'``. This is the inverse of :func:`ord`.
+ ``chr(9835)`` returns the string ``'♫'``. This is the inverse of :func:`ord`.
The valid range for the argument is from 0 through 1,114,111 (0x10FFFF in
base 16). :exc:`ValueError` will be raised if *i* is outside that range.
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list