summaryrefslogtreecommitdiff
path: root/Doc/howto/clinic.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/howto/clinic.rst')
-rw-r--r--Doc/howto/clinic.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/howto/clinic.rst b/Doc/howto/clinic.rst
index 491c5a2ca4..eaab20ad97 100644
--- a/Doc/howto/clinic.rst
+++ b/Doc/howto/clinic.rst
@@ -834,9 +834,9 @@ on the right is the text you'd replace it with.
``'i'`` ``int``
``'I'`` ``unsigned_int(bitwise=True)``
``'k'`` ``unsigned_long(bitwise=True)``
-``'K'`` ``unsigned_PY_LONG_LONG(bitwise=True)``
+``'K'`` ``unsigned_long_long(bitwise=True)``
``'l'`` ``long``
-``'L'`` ``PY_LONG_LONG``
+``'L'`` ``long long``
``'n'`` ``Py_ssize_t``
``'O'`` ``object``
``'O!'`` ``object(subclass_of='&PySomething_Type')``