Документация Python неофициальный перевод

someos.md

79 строк · 7.6 КБ · обычная страница · сырой текст · скачать

1> **Источник:** https://python-all.ru/3.0/library/someos.html2>3> «Документация Python на русском» – неофициальный перевод официальной документации Python: версии от 2.6 до 3.16, полнотекстовый поиск, английский оригинал рядом с переводом. Эта Markdown-версия страницы предназначена для работы с LLM: вставьте её в ChatGPT, Claude или Cursor.45---67# Необязательные службы операционной системы89Модули, описанные в этой главе, предоставляют интерфейсы к функциям операционной системы, доступным только на отдельных операционных системах. Обычно эти интерфейсы основаны на интерфейсах Unix или C, но они также доступны на некоторых других системах (например, Windows или NT). Вот обзор:1011- [`select` – Ожидание завершения ввода-вывода](https://python-all.ru/3.0/library/select.html)1213  - [Объекты опроса по фронту и уровню (epoll)](https://python-all.ru/3.0/library/select.html#edge-and-level-trigger-polling-epoll-objects)14  - [Объекты опроса](https://python-all.ru/3.0/library/select.html#polling-objects)15  - [Объекты kqueue](https://python-all.ru/3.0/library/select.html#id1)16  - [Объекты kevent](https://python-all.ru/3.0/library/select.html#id2)17- [`threading` – Высокоуровневый интерфейс многопоточности](https://python-all.ru/3.0/library/threading.html)1819  - [Объекты потоков](https://python-all.ru/3.0/library/threading.html#id1)20  - [Объекты блокировок](https://python-all.ru/3.0/library/threading.html#id2)21  - [Объекты RLock](https://python-all.ru/3.0/library/threading.html#id3)22  - [Объекты условий](https://python-all.ru/3.0/library/threading.html#id4)23  - [Объекты семафоров](https://python-all.ru/3.0/library/threading.html#id5)2425    - [`Semaphore` Пример](https://python-all.ru/3.0/library/threading.html#semaphore-example)26  - [Объекты событий](https://python-all.ru/3.0/library/threading.html#id6)27  - [Объекты таймеров](https://python-all.ru/3.0/library/threading.html#id7)28  - [Использование блокировок, условий и семафоров в инструкции `with`](https://python-all.ru/3.0/library/threading.html#using-locks-conditions-and-semaphores-in-the-with-statement)29  - [Импорт в многопоточном коде](https://python-all.ru/3.0/library/threading.html#importing-in-threaded-code)30- [`dummy_threading` – Прямая замена модуля `threading`](https://python-all.ru/3.0/library/dummy_threading.html)31- [`_thread` – Низкоуровневый API многопоточности](https://python-all.ru/3.0/library/_thread.html)32- [`_dummy_thread` – Прямая замена модуля `_thread`](https://python-all.ru/3.0/library/_dummy_thread.html)33- [`multiprocessing` – Основанный на процессах интерфейс «многопоточности»](https://python-all.ru/3.0/library/multiprocessing.html)3435  - [Введение](https://python-all.ru/3.0/library/multiprocessing.html#introduction)3637    - [Класс `процесс`](https://python-all.ru/3.0/library/multiprocessing.html#the-process-class)38    - [Обмен объектами между процессами](https://python-all.ru/3.0/library/multiprocessing.html#exchanging-objects-between-processes)39    - [Синхронизация между процессами](https://python-all.ru/3.0/library/multiprocessing.html#synchronization-between-processes)40    - [Совместное использование состояния между процессами](https://python-all.ru/3.0/library/multiprocessing.html#sharing-state-between-processes)41    - [Использование пула рабочих процессов](https://python-all.ru/3.0/library/multiprocessing.html#using-a-pool-of-workers)42  - [Справочник](https://python-all.ru/3.0/library/multiprocessing.html#reference)4344    - [`процесс` и исключения](https://python-all.ru/3.0/library/multiprocessing.html#process-and-exceptions)45    - [Каналы и очереди](https://python-all.ru/3.0/library/multiprocessing.html#pipes-and-queues)46    - [Разное](https://python-all.ru/3.0/library/multiprocessing.html#miscellaneous)47    - [Объекты соединений](https://python-all.ru/3.0/library/multiprocessing.html#connection-objects)48    - [Примитивы синхронизации](https://python-all.ru/3.0/library/multiprocessing.html#synchronization-primitives)49    - [Разделяемые объекты `ctypes`](https://python-all.ru/3.0/library/multiprocessing.html#shared-ctypes-objects)5051      - [Модуль `multiprocessing.sharedctypes`](https://python-all.ru/3.0/library/multiprocessing.html#module-multiprocessing.sharedctypes)52    - [Менеджеры](https://python-all.ru/3.0/library/multiprocessing.html#module-multiprocessing.managers)5354      - [Объекты Namespace](https://python-all.ru/3.0/library/multiprocessing.html#namespace-objects)55      - [Настраиваемые менеджеры](https://python-all.ru/3.0/library/multiprocessing.html#customized-managers)56      - [Использование удалённого менеджера](https://python-all.ru/3.0/library/multiprocessing.html#using-a-remote-manager)57    - [Объекты-прокси](https://python-all.ru/3.0/library/multiprocessing.html#proxy-objects)5859      - [Очистка](https://python-all.ru/3.0/library/multiprocessing.html#cleanup)60    - [Пулы процессов](https://python-all.ru/3.0/library/multiprocessing.html#module-multiprocessing.pool)61    - [Слушатели и клиенты](https://python-all.ru/3.0/library/multiprocessing.html#module-multiprocessing.connection)6263      - [Форматы адресов](https://python-all.ru/3.0/library/multiprocessing.html#address-formats)64    - [Ключи аутентификации](https://python-all.ru/3.0/library/multiprocessing.html#authentication-keys)65    - [Логирование](https://python-all.ru/3.0/library/multiprocessing.html#logging)66    - [Модуль `multiprocessing.dummy`](https://python-all.ru/3.0/library/multiprocessing.html#module-multiprocessing.dummy)67  - [Рекомендации по программированию](https://python-all.ru/3.0/library/multiprocessing.html#programming-guidelines)6869    - [Все платформы](https://python-all.ru/3.0/library/multiprocessing.html#all-platforms)70    - [Windows](https://python-all.ru/3.0/library/multiprocessing.html#windows)71  - [Примеры](https://python-all.ru/3.0/library/multiprocessing.html#examples)72- [`mmap` – Поддержка отображаемых в память файлов](https://python-all.ru/3.0/library/mmap.html)73- [`readline` – Интерфейс GNU readline](https://python-all.ru/3.0/library/readline.html)7475  - [Пример](https://python-all.ru/3.0/library/readline.html#example)76- [`rlcompleter` – Функция дополнения для GNU readline](https://python-all.ru/3.0/library/rlcompleter.html)7778  - [Объекты Completer](https://python-all.ru/3.0/library/rlcompleter.html#id1)79