From b8a02470c31f8f8142eb79041e122d7925ac9171 Mon Sep 17 00:00:00 2001 From: Keith Erskine Date: Mon, 20 Jan 2020 14:41:06 -0600 Subject: [PATCH] PyLong_AsLongLong() docs should say 'long long' --- Doc/c-api/long.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/c-api/long.rst b/Doc/c-api/long.rst index c3601045920780..c5c2aa60dcc35c 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.