We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d912569 commit 8437710Copy full SHA for 8437710
1 file changed
Doc/c-api/intro.rst
@@ -266,7 +266,7 @@ complete listing.
266
267
.. c:macro:: Py_LL(number)
268
269
- Use *number* as a :c:type:`long long` integer literal.
+ Use *number* as a ``long long`` integer literal.
270
271
This usally expands to *number* followed by ``LL``, but will expand to some
272
compiler-specific suffixes (such as ``I64``) on older compilers.
@@ -356,7 +356,7 @@ complete listing.
356
357
.. c:macro:: Py_ULL(number)
358
359
- Similar to :c:macro:`Py_LL`, but *number* will be a :c:type:`unsigned long long`
+ Similar to :c:macro:`Py_LL`, but *number* will be an ``unsigned long long``
360
literal instead. This is done by appending ``U`` to the result of ``Py_LL``.
361
362
In modern versions of Python, this macro is not very useful, as C99 and
0 commit comments