diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2016-03-21 01:18:54 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2016-03-21 01:18:54 (GMT) |
commit | 5decb844545cfb17fdc3d914cf51ab1c2568a375 (patch) | |
tree | 9d56b8cf71d66a950a0ce41f7df02cabd51b4690 | |
parent | 370764a824aa7ee9faaf6f69d5c2ed2f487e11dc (diff) | |
parent | 063d48d9c038f508ca82b7630d2d5a600ece8d41 (diff) | |
download | cpython-5decb844545cfb17fdc3d914cf51ab1c2568a375.zip cpython-5decb844545cfb17fdc3d914cf51ab1c2568a375.tar.gz cpython-5decb844545cfb17fdc3d914cf51ab1c2568a375.tar.bz2 |
Merge with 3.5
-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]) |