Skip to content

Commit 8437710

Browse files
committed
Fix Sphinx errors.
1 parent d912569 commit 8437710

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/c-api/intro.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ complete listing.
266266

267267
.. c:macro:: Py_LL(number)
268268
269-
Use *number* as a :c:type:`long long` integer literal.
269+
Use *number* as a ``long long`` integer literal.
270270

271271
This usally expands to *number* followed by ``LL``, but will expand to some
272272
compiler-specific suffixes (such as ``I64``) on older compilers.
@@ -356,7 +356,7 @@ complete listing.
356356

357357
.. c:macro:: Py_ULL(number)
358358
359-
Similar to :c:macro:`Py_LL`, but *number* will be a :c:type:`unsigned long long`
359+
Similar to :c:macro:`Py_LL`, but *number* will be an ``unsigned long long``
360360
literal instead. This is done by appending ``U`` to the result of ``Py_LL``.
361361

362362
In modern versions of Python, this macro is not very useful, as C99 and

0 commit comments

Comments
 (0)