René's URL Explorer Experiment


Title: Python support for free threading — Python 3.15.0a5 documentation

Open Graph Title: Python support for free threading

Description: Starting with the 3.13 release, CPython has support for a build of Python called free threading where the global interpreter lock(GIL) is disabled. Free-threaded execution allows for full utilizati...

Open Graph Description: Starting with the 3.13 release, CPython has support for a build of Python called free threading where the global interpreter lock(GIL) is disabled. Free-threaded execution allows for full utilizati...

Opengraph URL: https://docs.python.org/3/howto/free-threading-python.html

direct link

Domain: docs.python.org

og:typewebsite
og:site_namePython documentation
og:image:width1146
og:image:height600
og:imagehttps://docs.python.org/3.15/_images/social_previews/summary_howto_free-threading-python_52719009.png
og:image:altStarting with the 3.13 release, CPython has support for a build of Python called free threading where the global interpreter lock(GIL) is disabled. Free-threaded execution allows for full utilizati...
twitter:cardsummary_large_image
theme-color#3776ab
readthedocs-addons-api-version1

Links:

https://www.python.org/
Table of Contentshttps://docs.python.org/dev/contents.html
Python support for free threadinghttps://docs.python.org/dev/howto/free-threading-python.html
Installationhttps://docs.python.org/dev/howto/free-threading-python.html#installation
Identifying free-threaded Pythonhttps://docs.python.org/dev/howto/free-threading-python.html#identifying-free-threaded-python
The global interpreter lock in free-threaded Pythonhttps://docs.python.org/dev/howto/free-threading-python.html#the-global-interpreter-lock-in-free-threaded-python
Thread safetyhttps://docs.python.org/dev/howto/free-threading-python.html#thread-safety
Known limitationshttps://docs.python.org/dev/howto/free-threading-python.html#known-limitations
Immortalizationhttps://docs.python.org/dev/howto/free-threading-python.html#immortalization
Frame objectshttps://docs.python.org/dev/howto/free-threading-python.html#frame-objects
Iteratorshttps://docs.python.org/dev/howto/free-threading-python.html#iterators
Single-threaded performancehttps://docs.python.org/dev/howto/free-threading-python.html#single-threaded-performance
Behavioral changeshttps://docs.python.org/dev/howto/free-threading-python.html#behavioral-changes
Context variableshttps://docs.python.org/dev/howto/free-threading-python.html#context-variables
Warning filtershttps://docs.python.org/dev/howto/free-threading-python.html#warning-filters
The Python 2.3 Method Resolution Orderhttps://docs.python.org/dev/howto/mro.html
C API Extension Support for Free Threadinghttps://docs.python.org/dev/howto/free-threading-extensions.html
Report a bughttps://docs.python.org/dev/bugs.html
Show source https://github.com/python/cpython/blob/main/Doc/howto/free-threading-python.rst?plain=1
indexhttps://docs.python.org/dev/genindex.html
moduleshttps://docs.python.org/dev/py-modindex.html
nexthttps://docs.python.org/dev/howto/free-threading-extensions.html
previoushttps://docs.python.org/dev/howto/mro.html
Pythonhttps://www.python.org/
3.15.0a5 Documentationhttps://docs.python.org/dev/index.html
Python HOWTOshttps://docs.python.org/dev/howto/index.html
Python support for free threadinghttps://docs.python.org/dev/howto/free-threading-python.html
https://docs.python.org/dev/howto/free-threading-python.html#python-support-for-free-threading
free threadinghttps://docs.python.org/dev/glossary.html#term-free-threading
global interpreter lockhttps://docs.python.org/dev/glossary.html#term-global-interpreter-lock
extension modulehttps://docs.python.org/dev/glossary.html#term-extension-module
GILhttps://docs.python.org/dev/glossary.html#term-GIL
C API Extension Support for Free Threadinghttps://docs.python.org/dev/howto/free-threading-extensions.html#freethreading-extensions-howto
PEP 703https://peps.python.org/pep-0703/
https://docs.python.org/dev/howto/free-threading-python.html#installation
https://www.python.org/downloads/https://www.python.org/downloads/
Installing a Free-Threaded Pythonhttps://py-free-threading.github.io/installing-cpython/
--disable-gilhttps://docs.python.org/dev/using/configure.html#cmdoption-disable-gil
https://docs.python.org/dev/howto/free-threading-python.html#identifying-free-threaded-python
python -VVhttps://docs.python.org/dev/using/cmdline.html#cmdoption-V
sys.versionhttps://docs.python.org/dev/library/sys.html#sys.version
sys._is_gil_enabled()https://docs.python.org/dev/library/sys.html#sys._is_gil_enabled
https://docs.python.org/dev/howto/free-threading-python.html#the-global-interpreter-lock-in-free-threaded-python
PYTHON_GILhttps://docs.python.org/dev/using/cmdline.html#envvar-PYTHON_GIL
-X gilhttps://docs.python.org/dev/using/cmdline.html#cmdoption-X
https://py-free-threading.github.io/tracking/https://py-free-threading.github.io/tracking/
https://hugovk.github.io/free-threaded-wheels/https://hugovk.github.io/free-threaded-wheels/
https://docs.python.org/dev/howto/free-threading-python.html#thread-safety
dicthttps://docs.python.org/dev/library/stdtypes.html#dict
listhttps://docs.python.org/dev/library/stdtypes.html#list
sethttps://docs.python.org/dev/library/stdtypes.html#set
threading.Lockhttps://docs.python.org/dev/library/threading.html#threading.Lock
https://docs.python.org/dev/howto/free-threading-python.html#known-limitations
https://docs.python.org/dev/howto/free-threading-python.html#immortalization
immortalhttps://docs.python.org/dev/glossary.html#term-immortal
sys.intern()https://docs.python.org/dev/library/sys.html#sys.intern
https://docs.python.org/dev/howto/free-threading-python.html#frame-objects
frame.f_localshttps://docs.python.org/dev/reference/datamodel.html#frame.f_locals
framehttps://docs.python.org/dev/reference/datamodel.html#frame-objects
https://docs.python.org/dev/howto/free-threading-python.html#iterators
https://docs.python.org/dev/howto/free-threading-python.html#single-threaded-performance
https://docs.python.org/dev/howto/free-threading-python.html#behavioral-changes
https://docs.python.org/dev/howto/free-threading-python.html#context-variables
thread_inherit_contexthttps://docs.python.org/dev/library/sys.html#sys.flags.thread_inherit_context
threading.Threadhttps://docs.python.org/dev/library/threading.html#threading.Thread
Context()https://docs.python.org/dev/library/contextvars.html#contextvars.Context
start()https://docs.python.org/dev/library/threading.html#threading.Thread.start
Context()https://docs.python.org/dev/library/contextvars.html#contextvars.Context
https://docs.python.org/dev/howto/free-threading-python.html#warning-filters
context_aware_warningshttps://docs.python.org/dev/library/sys.html#sys.flags.context_aware_warnings
warnings.catch_warningshttps://docs.python.org/dev/library/warnings.html#warnings.catch_warnings
catch_warningshttps://docs.python.org/dev/library/warnings.html#warnings.catch_warnings
warningshttps://docs.python.org/dev/library/warnings.html#module-warnings
Table of Contentshttps://docs.python.org/dev/contents.html
Python support for free threadinghttps://docs.python.org/dev/howto/free-threading-python.html
Installationhttps://docs.python.org/dev/howto/free-threading-python.html#installation
Identifying free-threaded Pythonhttps://docs.python.org/dev/howto/free-threading-python.html#identifying-free-threaded-python
The global interpreter lock in free-threaded Pythonhttps://docs.python.org/dev/howto/free-threading-python.html#the-global-interpreter-lock-in-free-threaded-python
Thread safetyhttps://docs.python.org/dev/howto/free-threading-python.html#thread-safety
Known limitationshttps://docs.python.org/dev/howto/free-threading-python.html#known-limitations
Immortalizationhttps://docs.python.org/dev/howto/free-threading-python.html#immortalization
Frame objectshttps://docs.python.org/dev/howto/free-threading-python.html#frame-objects
Iteratorshttps://docs.python.org/dev/howto/free-threading-python.html#iterators
Single-threaded performancehttps://docs.python.org/dev/howto/free-threading-python.html#single-threaded-performance
Behavioral changeshttps://docs.python.org/dev/howto/free-threading-python.html#behavioral-changes
Context variableshttps://docs.python.org/dev/howto/free-threading-python.html#context-variables
Warning filtershttps://docs.python.org/dev/howto/free-threading-python.html#warning-filters
The Python 2.3 Method Resolution Orderhttps://docs.python.org/dev/howto/mro.html
C API Extension Support for Free Threadinghttps://docs.python.org/dev/howto/free-threading-extensions.html
Report a bughttps://docs.python.org/dev/bugs.html
Show source https://github.com/python/cpython/blob/main/Doc/howto/free-threading-python.rst?plain=1
indexhttps://docs.python.org/dev/genindex.html
moduleshttps://docs.python.org/dev/py-modindex.html
nexthttps://docs.python.org/dev/howto/free-threading-extensions.html
previoushttps://docs.python.org/dev/howto/mro.html
Pythonhttps://www.python.org/
3.15.0a5 Documentationhttps://docs.python.org/dev/index.html
Python HOWTOshttps://docs.python.org/dev/howto/index.html
Python support for free threadinghttps://docs.python.org/dev/howto/free-threading-python.html
Copyrighthttps://docs.python.org/dev/copyright.html
History and Licensehttps://docs.python.org/license.html
Please donate.https://www.python.org/psf/donations/
Found a bughttps://docs.python.org/bugs.html
Sphinxhttps://www.sphinx-doc.org/

Viewport: width=device-width, initial-scale=1.0


URLs of crawlers that visited me.