summaryrefslogtreecommitdiffstats
path: root/Doc/howto/clinic.rst
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-09-08 16:29:11 (GMT)
committerBenjamin Peterson <benjamin@python.org>2016-09-08 16:29:11 (GMT)
commitcc854499e40483d408d68201f1e6d6ae936ae13a (patch)
tree7b8bbe7a1f6f233a31b30e1ff3c8cad81bca6408 /Doc/howto/clinic.rst
parentc235af47f17d2dab282237a7e49445d234f7df7e (diff)
downloadcpython-cc854499e40483d408d68201f1e6d6ae936ae13a.zip
cpython-cc854499e40483d408d68201f1e6d6ae936ae13a.tar.gz
cpython-cc854499e40483d408d68201f1e6d6ae936ae13a.tar.bz2
clinic: PY_LONG_LONG -> long long
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 caa4975..f435884 100644
--- a/Doc/howto/clinic.rst
+++ b/Doc/howto/clinic.rst
@@ -827,9 +827,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')``