[Python-checkins] cpython (3.5): Issue #26525: Change chr example to match change in ord example.

terry.reedy python-checkins at python.org
Wed Mar 23 13:40:45 EDT 2016


https://hg.python.org/cpython/rev/f3bd94c57cd8
changeset:   100698:f3bd94c57cd8
branch:      3.5
parent:      100687:3f5e0d8e19a0
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Wed Mar 23 13:36:52 2016 -0400
summary:
  Issue #26525: Change chr example to match change in ord example.

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 code point is the
    integer *i*.  For example, ``chr(97)`` returns the string ``'a'``, while
-   ``chr(957)`` returns the string ``'ν'``. This is the inverse of :func:`ord`.
+   ``chr(8364)`` 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: https://hg.python.org/cpython


More information about the Python-checkins mailing list