/
githubmirror
/
cpython
Обзор
Документация
Войти
/
githubmirror
/
cpython
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
Doc/library/concurrency.rst
32 строки
716 B
Eric Snow
gh-134939: Add the concurrent.interpreters Module (gh-133958)
12 июн 2025, 02:35
Не верифицирован
12 июн 2025, 02:35
6214373
Код
Авторство
О чём код?
.. _concurrency: ******************** Concurrent Execution ******************** The modules described in this chapter provide support for concurrent execution of code. The appropriate choice of tool will depend on the task to be executed (CPU bound vs IO bound) and preferred style of development (event driven cooperative multitasking vs preemptive multitasking). Here's an overview: .. toctree:: threading.rst multiprocessing.rst multiprocessing.shared_memory.rst concurrent.rst concurrent.futures.rst concurrent.interpreters.rst subprocess.rst sched.rst queue.rst contextvars.rst The following are support modules for some of the above services: .. toctree:: _thread.rst