Skip to content

Commit e8bdfc6

Browse files
authored
Fix formatting for PyObject opaqueness section
1 parent 0e89d37 commit e8bdfc6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Doc/howto/freethreading-stable-abi.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ You can use it to enable code that only runs under the free-threaded build::
2929
can be used to determine whether the current running interpreter had the
3030
macro defined.
3131

32-
`PyObject` opaqueness
32+
``PyObject`` opaqueness
3333
=====================
3434

35-
Accessing any member of `PyObject` is now prohibited, like the non-GIL
36-
stable ABI. For instance, prefer `Py_Type()` and `Py_SET_TYPE()` over manipulating `ob_type` directly,
37-
`Py_REFCNT`, `Py_INCREF()` and `Py_DecRef().` over `ob_refcnt`, etc.
35+
Accessing any member of ``PyObject`` directly is now prohibited, like the non-GIL
36+
stable ABI. For instance, prefer ``Py_Type()`` and ``Py_SET_TYPE()`` over ``ob_type``,
37+
``Py_REFCNT``, ``Py_INCREF()`` and ``Py_DecRef()`` over ``ob_refcnt``, etc.
3838

3939
Module Initialization
4040
=====================

0 commit comments

Comments
 (0)