From: Keith Erskine Date: Tue, 21 Jan 2020 19:14:13 +0000 (-0600) Subject: PyLong_AsLongLong() docs should say 'long long' (#18082) X-Git-Tag: v3.9.0a3~31 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=47be7d0108b4021ede111dbd15a095c725be46b7;p=thirdparty%2FPython%2Fcpython.git PyLong_AsLongLong() docs should say 'long long' (#18082) --- diff --git a/Doc/c-api/long.rst b/Doc/c-api/long.rst index c36010459207..c5c2aa60dcc3 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.