diff options
-rw-r--r-- | Doc/howto/free-threading-extensions.rst | 6 | ||||
-rw-r--r-- | Doc/whatsnew/3.13.rst | 4 |
2 files changed, 10 insertions, 0 deletions
diff --git a/Doc/howto/free-threading-extensions.rst b/Doc/howto/free-threading-extensions.rst index 521810e..99e3ab3 100644 --- a/Doc/howto/free-threading-extensions.rst +++ b/Doc/howto/free-threading-extensions.rst @@ -270,3 +270,9 @@ Windows Due to a limitation of the official Windows installer, you will need to manually define ``Py_GIL_DISABLED=1`` when building extensions from source. + +.. seealso:: + + `Porting Extension Modules to Support Free-Threading + <https://py-free-threading.github.io/porting/>`_: + A community-maintained porting guide for extension authors. diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index 4f418e9..7075392 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -359,6 +359,10 @@ free-threaded build. :pep:`703` "Making the Global Interpreter Lock Optional in CPython" contains rationale and information surrounding this work. + `Porting Extension Modules to Support Free-Threading + <https://py-free-threading.github.io/porting/>`_: A community-maintained + porting guide for extension authors. + .. _whatsnew313-jit-compiler: |