diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2016-03-21 01:18:40 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2016-03-21 01:18:40 (GMT) |
commit | 063d48d9c038f508ca82b7630d2d5a600ece8d41 (patch) | |
tree | d356fdb3c4ab338e780bfe7b9ff24f640b345760 /Doc | |
parent | 4902c46bff57f17b72cf68e8fafcc3f9b0df6f3c (diff) | |
download | cpython-063d48d9c038f508ca82b7630d2d5a600ece8d41.zip cpython-063d48d9c038f508ca82b7630d2d5a600ece8d41.tar.gz cpython-063d48d9c038f508ca82b7630d2d5a600ece8d41.tar.bz2 |
Issue #26525: Change ord example from nu to more easily recognized Euro sign.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/functions.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index ef4176a..0491a3b 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -1079,8 +1079,8 @@ are always available. They are listed here in alphabetical order. Given a string representing one Unicode character, return an integer representing the Unicode code point of that character. For example, - ``ord('a')`` returns the integer ``97`` and ``ord('ν')`` returns ``957``. - This is the inverse of :func:`chr`. + ``ord('a')`` returns the integer ``97`` and ``ord('€')`` (Euro sign) + returns ``8364``. This is the inverse of :func:`chr`. .. function:: pow(x, y[, z]) |