diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-09-08 16:29:11 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-09-08 16:29:11 (GMT) |
commit | cc854499e40483d408d68201f1e6d6ae936ae13a (patch) | |
tree | 7b8bbe7a1f6f233a31b30e1ff3c8cad81bca6408 /Doc/howto | |
parent | c235af47f17d2dab282237a7e49445d234f7df7e (diff) | |
download | cpython-cc854499e40483d408d68201f1e6d6ae936ae13a.zip cpython-cc854499e40483d408d68201f1e6d6ae936ae13a.tar.gz cpython-cc854499e40483d408d68201f1e6d6ae936ae13a.tar.bz2 |
clinic: PY_LONG_LONG -> long long
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/clinic.rst | 4 |
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')`` |