diff options
author | Keith Erskine <toastie604@gmail.com> | 2020-01-21 19:14:13 (GMT) |
---|---|---|
committer | Mark Dickinson <mdickinson@enthought.com> | 2020-01-21 19:14:13 (GMT) |
commit | 47be7d0108b4021ede111dbd15a095c725be46b7 (patch) | |
tree | 5aa7fd26f150675f733d3ed45a0f18e77d573b7d /Doc | |
parent | 623ed6171eae35af7fd2e804dfd9c832c05c5d48 (diff) | |
download | cpython-47be7d0108b4021ede111dbd15a095c725be46b7.zip cpython-47be7d0108b4021ede111dbd15a095c725be46b7.tar.gz cpython-47be7d0108b4021ede111dbd15a095c725be46b7.tar.bz2 |
PyLong_AsLongLong() docs should say 'long long' (#18082)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/c-api/long.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/long.rst b/Doc/c-api/long.rst index c360104..c5c2aa6 100644 --- a/Doc/c-api/long.rst +++ b/Doc/c-api/long.rst @@ -177,7 +177,7 @@ distinguished from a number. Use :c:func:`PyErr_Occurred` to disambiguate. :c:type:`PyLongObject`. Raise :exc:`OverflowError` if the value of *obj* is out of range for a - :c:type:`long`. + :c:type:`long long`. Returns ``-1`` on error. Use :c:func:`PyErr_Occurred` to disambiguate. |