Skip to content
Prev Previous commit
Next Next commit
Update ctypes.rst
  • Loading branch information
corona10 committed Jun 15, 2025
commit a53448c855f2c95e656379d67ffb28cadf95ce59
2 changes: 1 addition & 1 deletion Doc/library/ctypes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -882,7 +882,7 @@ invalid non-\ ``NULL`` pointers would crash Python)::
Thread safety without the GIL
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

In Python 3.13, the :term:`GIL` may be disabled on :term:`experimental free threaded <free threading>` builds.
From Python 3.13, the :term:`GIL` can be disabled on :term:`free threaded <free threading>` builds.
Comment thread
corona10 marked this conversation as resolved.
Outdated
In ctypes, reads and writes to a single object concurrently is safe, but not across multiple objects:

.. code-block:: pycon
Expand Down
Loading