clinic: PY_LONG_LONG -> long long

This commit is contained in:
Benjamin Peterson 2016-09-08 09:29:11 -07:00
parent c235af47f1
commit cc854499e4
6 changed files with 32 additions and 74 deletions

View file

@ -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')``