> **Источник:** https://python-all.ru/3.0/contents.html
>
> «Документация Python на русском» – неофициальный перевод официальной документации Python: версии от 2.6 до 3.16, полнотекстовый поиск, английский оригинал рядом с переводом. Эта Markdown-версия страницы предназначена для работы с LLM: вставьте её в ChatGPT, Claude или Cursor.

---

# Содержание документации Python

- [Что нового в Python](https://python-all.ru/3.0/whatsnew/index.html)

  - [Что нового в Python 3.0](https://python-all.ru/3.0/whatsnew/3.0.html)

    - [Типичные трудности](https://python-all.ru/3.0/whatsnew/3.0.html#common-stumbling-blocks)

      - [Print – это функция](https://python-all.ru/3.0/whatsnew/3.0.html#print-is-a-function)
      - [Представления и итераторы вместо списков](https://python-all.ru/3.0/whatsnew/3.0.html#views-and-iterators-instead-of-lists)
      - [Сравнение на упорядочивание](https://python-all.ru/3.0/whatsnew/3.0.html#ordering-comparisons)
      - [Целые числа](https://python-all.ru/3.0/whatsnew/3.0.html#integers)
      - [Текст против данных: вместо Unicode и 8-битных строк](https://python-all.ru/3.0/whatsnew/3.0.html#text-vs-data-instead-of-unicode-vs-8-bit)
    - [Обзор изменений синтаксиса](https://python-all.ru/3.0/whatsnew/3.0.html#overview-of-syntax-changes)

      - [Новый синтаксис](https://python-all.ru/3.0/whatsnew/3.0.html#new-syntax)
      - [Изменённый синтаксис](https://python-all.ru/3.0/whatsnew/3.0.html#changed-syntax)
      - [Удалённый синтаксис](https://python-all.ru/3.0/whatsnew/3.0.html#removed-syntax)
    - [Изменения, уже присутствовавшие в Python 2.6](https://python-all.ru/3.0/whatsnew/3.0.html#changes-already-present-in-python-2-6)
    - [Изменения в библиотеке](https://python-all.ru/3.0/whatsnew/3.0.html#library-changes)
    - [**PEP 3101**: Новый подход к форматированию строк](https://python-all.ru/3.0/whatsnew/3.0.html#pep-3101-a-new-approach-to-string-formatting)
    - [Изменения в исключениях](https://python-all.ru/3.0/whatsnew/3.0.html#changes-to-exceptions)
    - [Прочие изменения](https://python-all.ru/3.0/whatsnew/3.0.html#miscellaneous-other-changes)

      - [Операторы и специальные методы](https://python-all.ru/3.0/whatsnew/3.0.html#operators-and-special-methods)
      - [Встроенные функции](https://python-all.ru/3.0/whatsnew/3.0.html#builtins)
    - [Изменения в сборке и C API](https://python-all.ru/3.0/whatsnew/3.0.html#build-and-c-api-changes)
    - [Производительность](https://python-all.ru/3.0/whatsnew/3.0.html#performance)
    - [Переход на Python 3.0](https://python-all.ru/3.0/whatsnew/3.0.html#porting-to-python-3-0)
  - [Что нового в Python 2.7](https://python-all.ru/3.0/whatsnew/2.7.html)

    - [Прочие изменения языка](https://python-all.ru/3.0/whatsnew/2.7.html#other-language-changes)

      - [Оптимизации](https://python-all.ru/3.0/whatsnew/2.7.html#optimizations)
    - [Новые, улучшенные и устаревшие модули](https://python-all.ru/3.0/whatsnew/2.7.html#new-improved-and-deprecated-modules)

      - [ttk: Тематические виджеты для Tk](https://python-all.ru/3.0/whatsnew/2.7.html#ttk-themed-widgets-for-tk)
    - [Изменения в сборке и C API](https://python-all.ru/3.0/whatsnew/2.7.html#build-and-c-api-changes)

      - [Изменения для конкретных платформ: Windows](https://python-all.ru/3.0/whatsnew/2.7.html#port-specific-changes-windows)
      - [Изменения для конкретных платформ: Mac OS X](https://python-all.ru/3.0/whatsnew/2.7.html#port-specific-changes-mac-os-x)
    - [Переход на Python 2.7](https://python-all.ru/3.0/whatsnew/2.7.html#porting-to-python-2-7)
    - [Благодарности](https://python-all.ru/3.0/whatsnew/2.7.html#acknowledgements)
  - [Что нового в Python 2.6](https://python-all.ru/3.0/whatsnew/2.6.html)

    - [Python 3.0](https://python-all.ru/3.0/whatsnew/2.6.html#python-3-0)
    - [Изменения в процессе разработки](https://python-all.ru/3.0/whatsnew/2.6.html#changes-to-the-development-process)

      - [Новый трекер ошибок: Roundup](https://python-all.ru/3.0/whatsnew/2.6.html#new-issue-tracker-roundup)
      - [Новый формат документации: reStructuredText с использованием Sphinx](https://python-all.ru/3.0/whatsnew/2.6.html#new-documentation-format-restructuredtext-using-sphinx)
    - [PEP 343: Оператор 'with'](https://python-all.ru/3.0/whatsnew/2.6.html#pep-343-the-with-statement)

      - [Написание контекстных менеджеров](https://python-all.ru/3.0/whatsnew/2.6.html#writing-context-managers)
      - [Модуль contextlib](https://python-all.ru/3.0/whatsnew/2.6.html#the-contextlib-module)
    - [PEP 366: Явные относительные импорты из главного модуля](https://python-all.ru/3.0/whatsnew/2.6.html#pep-366-explicit-relative-imports-from-a-main-module)
    - [PEP 370: Пользовательская `site-packages` директория](https://python-all.ru/3.0/whatsnew/2.6.html#pep-370-per-user-site-packages-directory)
    - [PEP 371: Пакет `multiprocessing`](https://python-all.ru/3.0/whatsnew/2.6.html#pep-371-the-multiprocessing-package)
    - [PEP 3101: Расширенное форматирование строк](https://python-all.ru/3.0/whatsnew/2.6.html#pep-3101-advanced-string-formatting)
    - [PEP 3105: `print` как функция](https://python-all.ru/3.0/whatsnew/2.6.html#pep-3105-print-as-a-function)
    - [PEP 3110: Изменения в обработке исключений](https://python-all.ru/3.0/whatsnew/2.6.html#pep-3110-exception-handling-changes)
    - [PEP 3112: Байтовые литералы](https://python-all.ru/3.0/whatsnew/2.6.html#pep-3112-byte-literals)
    - [PEP 3116: Новая библиотека ввода-вывода](https://python-all.ru/3.0/whatsnew/2.6.html#pep-3116-new-i-o-library)
    - [PEP 3118: Пересмотренный протокол буферов](https://python-all.ru/3.0/whatsnew/2.6.html#pep-3118-revised-buffer-protocol)
    - [PEP 3119: Абстрактные базовые классы](https://python-all.ru/3.0/whatsnew/2.6.html#pep-3119-abstract-base-classes)
    - [PEP 3127: Поддержка и синтаксис целочисленных литералов](https://python-all.ru/3.0/whatsnew/2.6.html#pep-3127-integer-literal-support-and-syntax)
    - [PEP 3129: Декораторы классов](https://python-all.ru/3.0/whatsnew/2.6.html#pep-3129-class-decorators)
    - [PEP 3141: Иерархия типов для чисел](https://python-all.ru/3.0/whatsnew/2.6.html#pep-3141-a-type-hierarchy-for-numbers)

      - [Модуль `fractions`](https://python-all.ru/3.0/whatsnew/2.6.html#the-fractions-module)
    - [Прочие изменения языка](https://python-all.ru/3.0/whatsnew/2.6.html#other-language-changes)

      - [Оптимизации](https://python-all.ru/3.0/whatsnew/2.6.html#optimizations)
      - [Изменения в интерпретаторе](https://python-all.ru/3.0/whatsnew/2.6.html#interpreter-changes)
    - [Новые, улучшенные и устаревшие модули](https://python-all.ru/3.0/whatsnew/2.6.html#new-improved-and-deprecated-modules)

      - [Модуль `ast`](https://python-all.ru/3.0/whatsnew/2.6.html#the-ast-module)
      - [Модуль `future_builtins`](https://python-all.ru/3.0/whatsnew/2.6.html#the-future-builtins-module)
      - [Модуль `json`: JavaScript Object Notation](https://python-all.ru/3.0/whatsnew/2.6.html#the-json-module-javascript-object-notation)
      - [Модуль `plistlib`: парсер списков свойств](https://python-all.ru/3.0/whatsnew/2.6.html#the-plistlib-module-a-property-list-parser)
      - [Улучшения ctypes](https://python-all.ru/3.0/whatsnew/2.6.html#ctypes-enhancements)
      - [Улучшенная поддержка SSL](https://python-all.ru/3.0/whatsnew/2.6.html#improved-ssl-support)
    - [Изменения в сборке и C API](https://python-all.ru/3.0/whatsnew/2.6.html#build-and-c-api-changes)

      - [Изменения для конкретных платформ: Windows](https://python-all.ru/3.0/whatsnew/2.6.html#port-specific-changes-windows)
      - [Изменения для конкретных платформ: Mac OS X](https://python-all.ru/3.0/whatsnew/2.6.html#port-specific-changes-mac-os-x)
      - [Изменения для конкретных платформ: IRIX](https://python-all.ru/3.0/whatsnew/2.6.html#port-specific-changes-irix)
    - [Переход на Python 2.6](https://python-all.ru/3.0/whatsnew/2.6.html#porting-to-python-2-6)
    - [Благодарности](https://python-all.ru/3.0/whatsnew/2.6.html#acknowledgements)
  - [Что нового в Python 2.5](https://python-all.ru/3.0/whatsnew/2.5.html)

    - [PEP 308: Условные выражения](https://python-all.ru/3.0/whatsnew/2.5.html#pep-308-conditional-expressions)
    - [PEP 309: Частичное применение функций](https://python-all.ru/3.0/whatsnew/2.5.html#pep-309-partial-function-application)
    - [PEP 314: Метаданные для пакетов Python v1.1](https://python-all.ru/3.0/whatsnew/2.5.html#pep-314-metadata-for-python-software-packages-v1-1)
    - [PEP 328: Абсолютные и относительные импорты](https://python-all.ru/3.0/whatsnew/2.5.html#pep-328-absolute-and-relative-imports)
    - [PEP 338: Выполнение модулей как сценариев](https://python-all.ru/3.0/whatsnew/2.5.html#pep-338-executing-modules-as-scripts)
    - [PEP 341: Единый try/except/finally](https://python-all.ru/3.0/whatsnew/2.5.html#pep-341-unified-try-except-finally)
    - [PEP 342: Новые возможности генераторов](https://python-all.ru/3.0/whatsnew/2.5.html#pep-342-new-generator-features)
    - [PEP 343: Оператор 'with'](https://python-all.ru/3.0/whatsnew/2.5.html#pep-343-the-with-statement)

      - [Написание контекстных менеджеров](https://python-all.ru/3.0/whatsnew/2.5.html#writing-context-managers)
      - [Модуль contextlib](https://python-all.ru/3.0/whatsnew/2.5.html#the-contextlib-module)
    - [PEP 352: Исключения как классы нового стиля](https://python-all.ru/3.0/whatsnew/2.5.html#pep-352-exceptions-as-new-style-classes)
    - [PEP 353: Использование ssize\_t в качестве типа индекса](https://python-all.ru/3.0/whatsnew/2.5.html#pep-353-using-ssize-t-as-the-index-type)
    - [PEP 357: Метод '\_\_index\_\_'](https://python-all.ru/3.0/whatsnew/2.5.html#pep-357-the-index-method)
    - [Прочие изменения языка](https://python-all.ru/3.0/whatsnew/2.5.html#other-language-changes)

      - [Изменения в интерактивном интерпретаторе](https://python-all.ru/3.0/whatsnew/2.5.html#interactive-interpreter-changes)
      - [Оптимизации](https://python-all.ru/3.0/whatsnew/2.5.html#optimizations)
    - [Новые, улучшенные и удалённые модули](https://python-all.ru/3.0/whatsnew/2.5.html#module-ctypes)

      - [Пакет ctypes](https://python-all.ru/3.0/whatsnew/2.5.html#module-etree)
      - [Пакет ElementTree](https://python-all.ru/3.0/whatsnew/2.5.html#module-hashlib)
      - [Пакет hashlib](https://python-all.ru/3.0/whatsnew/2.5.html#module-sqlite)
      - [Пакет sqlite3](https://python-all.ru/3.0/whatsnew/2.5.html#module-wsgiref)
      - [Пакет wsgiref](https://python-all.ru/3.0/whatsnew/2.5.html#the-wsgiref-package)
    - [Изменения в сборке и C API](https://python-all.ru/3.0/whatsnew/2.5.html#build-and-c-api-changes)

      - [Изменения для конкретных платформ](https://python-all.ru/3.0/whatsnew/2.5.html#port-specific-changes)
    - [Перенос на Python 2.5](https://python-all.ru/3.0/whatsnew/2.5.html#porting-to-python-2-5)
    - [Благодарности](https://python-all.ru/3.0/whatsnew/2.5.html#acknowledgements)
  - [Что нового в Python 2.4](https://python-all.ru/3.0/whatsnew/2.4.html)

    - [PEP 218: Встроенные объекты множеств](https://python-all.ru/3.0/whatsnew/2.4.html#pep-218-built-in-set-objects)
    - [PEP 237: объединение длинных целых и целых чисел](https://python-all.ru/3.0/whatsnew/2.4.html#pep-237-unifying-long-integers-and-integers)
    - [PEP 289: Генераторные выражения](https://python-all.ru/3.0/whatsnew/2.4.html#pep-289-generator-expressions)
    - [PEP 292: Упрощённая подстановка строк](https://python-all.ru/3.0/whatsnew/2.4.html#pep-292-simpler-string-substitutions)
    - [PEP 318: Декораторы для функций и методов](https://python-all.ru/3.0/whatsnew/2.4.html#pep-318-decorators-for-functions-and-methods)
    - [PEP 322: Обратная итерация](https://python-all.ru/3.0/whatsnew/2.4.html#pep-322-reverse-iteration)
    - [PEP 324: Новый модуль подпроцесса](https://python-all.ru/3.0/whatsnew/2.4.html#pep-324-new-subprocess-module)
    - [PEP 327: Тип данных Decimal](https://python-all.ru/3.0/whatsnew/2.4.html#pep-327-decimal-data-type)

      - [Зачем нужен Decimal?](https://python-all.ru/3.0/whatsnew/2.4.html#why-is-decimal-needed)
      - [Тип `Decimal`](https://python-all.ru/3.0/whatsnew/2.4.html#the-decimal-type)
      - [Тип `Context`](https://python-all.ru/3.0/whatsnew/2.4.html#the-context-type)
    - [PEP 328: Многострочные импорты](https://python-all.ru/3.0/whatsnew/2.4.html#pep-328-multi-line-imports)
    - [PEP 331: Независящие от локали преобразования float/строк](https://python-all.ru/3.0/whatsnew/2.4.html#pep-331-locale-independent-float-string-conversions)
    - [Прочие изменения языка](https://python-all.ru/3.0/whatsnew/2.4.html#other-language-changes)

      - [Оптимизации](https://python-all.ru/3.0/whatsnew/2.4.html#optimizations)
    - [Новые, улучшенные и устаревшие модули](https://python-all.ru/3.0/whatsnew/2.4.html#new-improved-and-deprecated-modules)

      - [cookielib](https://python-all.ru/3.0/whatsnew/2.4.html#cookielib)
      - [doctest](https://python-all.ru/3.0/whatsnew/2.4.html#doctest)
    - [Изменения в сборке и C API](https://python-all.ru/3.0/whatsnew/2.4.html#build-and-c-api-changes)

      - [Изменения для конкретных платформ](https://python-all.ru/3.0/whatsnew/2.4.html#port-specific-changes)
    - [Перенос на Python 2.4](https://python-all.ru/3.0/whatsnew/2.4.html#porting-to-python-2-4)
    - [Благодарности](https://python-all.ru/3.0/whatsnew/2.4.html#acknowledgements)
  - [Что нового в Python 2.3](https://python-all.ru/3.0/whatsnew/2.3.html)

    - [PEP 218: Стандартный тип set](https://python-all.ru/3.0/whatsnew/2.3.html#pep-218-a-standard-set-datatype)
    - [PEP 255: простые генераторы](https://python-all.ru/3.0/whatsnew/2.3.html#pep-255-simple-generators)
    - [PEP 263: Кодировки исходного кода](https://python-all.ru/3.0/whatsnew/2.3.html#pep-263-source-code-encodings)
    - [PEP 273: Импорт модулей из ZIP-архивов](https://python-all.ru/3.0/whatsnew/2.3.html#pep-273-importing-modules-from-zip-archives)
    - [PEP 277: Поддержка имён файлов в Unicode для Windows NT](https://python-all.ru/3.0/whatsnew/2.3.html#pep-277-unicode-file-name-support-for-windows-nt)
    - [PEP 278: Универсальная поддержка символов новой строки](https://python-all.ru/3.0/whatsnew/2.3.html#pep-278-universal-newline-support)
    - [PEP 279: enumerate()](https://python-all.ru/3.0/whatsnew/2.3.html#pep-279-enumerate)
    - [PEP 282: Пакет logging](https://python-all.ru/3.0/whatsnew/2.3.html#pep-282-the-logging-package)
    - [PEP 285: Булев тип](https://python-all.ru/3.0/whatsnew/2.3.html#pep-285-a-boolean-type)
    - [PEP 293: Колбэки обработки ошибок кодеков](https://python-all.ru/3.0/whatsnew/2.3.html#pep-293-codec-error-handling-callbacks)
    - [PEP 301: Индекс пакетов и метаданные для Distutils](https://python-all.ru/3.0/whatsnew/2.3.html#pep-301-package-index-and-metadata-for-distutils)
    - [PEP 302: Новые хуки импорта](https://python-all.ru/3.0/whatsnew/2.3.html#pep-302-new-import-hooks)
    - [PEP 305: Файлы с разделителями-запятыми](https://python-all.ru/3.0/whatsnew/2.3.html#pep-305-comma-separated-files)
    - [PEP 307: Улучшения pickle](https://python-all.ru/3.0/whatsnew/2.3.html#pep-307-pickle-enhancements)
    - [Расширенные срезы](https://python-all.ru/3.0/whatsnew/2.3.html#extended-slices)
    - [Прочие изменения языка](https://python-all.ru/3.0/whatsnew/2.3.html#other-language-changes)

      - [Изменения в строках](https://python-all.ru/3.0/whatsnew/2.3.html#string-changes)
      - [Оптимизации](https://python-all.ru/3.0/whatsnew/2.3.html#optimizations)
    - [Новые, улучшенные и устаревшие модули](https://python-all.ru/3.0/whatsnew/2.3.html#new-improved-and-deprecated-modules)

      - [Тип даты/времени](https://python-all.ru/3.0/whatsnew/2.3.html#date-time-type)
      - [Модуль optparse](https://python-all.ru/3.0/whatsnew/2.3.html#the-optparse-module)
    - [Pymalloc: Специализированный аллокатор объектов](https://python-all.ru/3.0/whatsnew/2.3.html#pymalloc-a-specialized-object-allocator)
    - [Изменения в сборке и C API](https://python-all.ru/3.0/whatsnew/2.3.html#build-and-c-api-changes)

      - [Изменения для конкретных платформ](https://python-all.ru/3.0/whatsnew/2.3.html#port-specific-changes)
    - [Прочие изменения и исправления](https://python-all.ru/3.0/whatsnew/2.3.html#other-changes-and-fixes)
    - [Перенос на Python 2.3](https://python-all.ru/3.0/whatsnew/2.3.html#porting-to-python-2-3)
    - [Благодарности](https://python-all.ru/3.0/whatsnew/2.3.html#acknowledgements)
  - [Что нового в Python 2.2](https://python-all.ru/3.0/whatsnew/2.2.html)

    - [Введение](https://python-all.ru/3.0/whatsnew/2.2.html#introduction)
    - [PEP 252 и 253: изменения типов и классов](https://python-all.ru/3.0/whatsnew/2.2.html#peps-252-and-253-type-and-class-changes)

      - [Старые и новые классы](https://python-all.ru/3.0/whatsnew/2.2.html#old-and-new-classes)
      - [Дескрипторы](https://python-all.ru/3.0/whatsnew/2.2.html#descriptors)
      - [Множественное наследование: правило ромба](https://python-all.ru/3.0/whatsnew/2.2.html#multiple-inheritance-the-diamond-rule)
      - [Доступ к атрибутам](https://python-all.ru/3.0/whatsnew/2.2.html#attribute-access)
      - [Связанные ссылки](https://python-all.ru/3.0/whatsnew/2.2.html#related-links)
    - [PEP 234: итераторы](https://python-all.ru/3.0/whatsnew/2.2.html#pep-234-iterators)
    - [PEP 255: простые генераторы](https://python-all.ru/3.0/whatsnew/2.2.html#pep-255-simple-generators)
    - [PEP 237: объединение длинных целых и целых чисел](https://python-all.ru/3.0/whatsnew/2.2.html#pep-237-unifying-long-integers-and-integers)
    - [PEP 238: изменение оператора деления](https://python-all.ru/3.0/whatsnew/2.2.html#pep-238-changing-the-division-operator)
    - [Изменения в Unicode](https://python-all.ru/3.0/whatsnew/2.2.html#unicode-changes)
    - [PEP 227: вложенные области видимости](https://python-all.ru/3.0/whatsnew/2.2.html#pep-227-nested-scopes)
    - [Новые и улучшенные модули](https://python-all.ru/3.0/whatsnew/2.2.html#new-and-improved-modules)
    - [Изменения и исправления интерпретатора](https://python-all.ru/3.0/whatsnew/2.2.html#interpreter-changes-and-fixes)
    - [Прочие изменения и исправления](https://python-all.ru/3.0/whatsnew/2.2.html#other-changes-and-fixes)
    - [Благодарности](https://python-all.ru/3.0/whatsnew/2.2.html#acknowledgements)
  - [Что нового в Python 2.1](https://python-all.ru/3.0/whatsnew/2.1.html)

    - [Введение](https://python-all.ru/3.0/whatsnew/2.1.html#introduction)
    - [PEP 227: вложенные области видимости](https://python-all.ru/3.0/whatsnew/2.1.html#pep-227-nested-scopes)
    - [PEP 236: директивы \_\_future\_\_](https://python-all.ru/3.0/whatsnew/2.1.html#pep-236-future-directives)
    - [PEP 207: расширенные сравнения](https://python-all.ru/3.0/whatsnew/2.1.html#pep-207-rich-comparisons)
    - [PEP 230: инфраструктура предупреждений](https://python-all.ru/3.0/whatsnew/2.1.html#pep-230-warning-framework)
    - [PEP 229: новая система сборки](https://python-all.ru/3.0/whatsnew/2.1.html#pep-229-new-build-system)
    - [PEP 205: слабые ссылки](https://python-all.ru/3.0/whatsnew/2.1.html#pep-205-weak-references)
    - [PEP 232: атрибуты функций](https://python-all.ru/3.0/whatsnew/2.1.html#pep-232-function-attributes)
    - [PEP 235: импорт модулей на платформах, нечувствительных к регистру](https://python-all.ru/3.0/whatsnew/2.1.html#pep-235-importing-modules-on-case-insensitive-platforms)
    - [PEP 217: интерактивный перехватчик вывода](https://python-all.ru/3.0/whatsnew/2.1.html#pep-217-interactive-display-hook)
    - [PEP 208: новая модель приведения типов](https://python-all.ru/3.0/whatsnew/2.1.html#pep-208-new-coercion-model)
    - [PEP 241: метаданные в пакетах Python](https://python-all.ru/3.0/whatsnew/2.1.html#pep-241-metadata-in-python-packages)
    - [Новые и улучшенные модули](https://python-all.ru/3.0/whatsnew/2.1.html#new-and-improved-modules)
    - [Прочие изменения и исправления](https://python-all.ru/3.0/whatsnew/2.1.html#other-changes-and-fixes)
    - [Благодарности](https://python-all.ru/3.0/whatsnew/2.1.html#acknowledgements)
  - [Что нового в Python 2.0](https://python-all.ru/3.0/whatsnew/2.0.html)

    - [Введение](https://python-all.ru/3.0/whatsnew/2.0.html#introduction)
    - [А что насчёт Python 1.6?](https://python-all.ru/3.0/whatsnew/2.0.html#what-about-python-1-6)
    - [Новый процесс разработки](https://python-all.ru/3.0/whatsnew/2.0.html#new-development-process)
    - [Юникод](https://python-all.ru/3.0/whatsnew/2.0.html#unicode)
    - [Списковые включения](https://python-all.ru/3.0/whatsnew/2.0.html#list-comprehensions)
    - [Расширенное присваивание](https://python-all.ru/3.0/whatsnew/2.0.html#augmented-assignment)
    - [Методы строк](https://python-all.ru/3.0/whatsnew/2.0.html#string-methods)
    - [Сборка мусора циклических ссылок](https://python-all.ru/3.0/whatsnew/2.0.html#garbage-collection-of-cycles)
    - [Другие изменения ядра](https://python-all.ru/3.0/whatsnew/2.0.html#other-core-changes)

      - [Мелкие изменения языка](https://python-all.ru/3.0/whatsnew/2.0.html#minor-language-changes)
      - [Изменения встроенных функций](https://python-all.ru/3.0/whatsnew/2.0.html#changes-to-built-in-functions)
    - [Перенос на 2.0](https://python-all.ru/3.0/whatsnew/2.0.html#porting-to-2-0)
    - [Изменения в расширении/встраивании](https://python-all.ru/3.0/whatsnew/2.0.html#extending-embedding-changes)
    - [Distutils: упрощение установки модулей](https://python-all.ru/3.0/whatsnew/2.0.html#distutils-making-modules-easy-to-install)
    - [Модули XML](https://python-all.ru/3.0/whatsnew/2.0.html#xml-modules)

      - [Поддержка SAX2](https://python-all.ru/3.0/whatsnew/2.0.html#sax2-support)
      - [Поддержка DOM](https://python-all.ru/3.0/whatsnew/2.0.html#dom-support)
      - [Связь с PyXML](https://python-all.ru/3.0/whatsnew/2.0.html#relationship-to-pyxml)
    - [Изменения модулей](https://python-all.ru/3.0/whatsnew/2.0.html#module-changes)
    - [Новые модули](https://python-all.ru/3.0/whatsnew/2.0.html#new-modules)
    - [Улучшения IDLE](https://python-all.ru/3.0/whatsnew/2.0.html#idle-improvements)
    - [Удалённые и устаревшие модули](https://python-all.ru/3.0/whatsnew/2.0.html#deleted-and-deprecated-modules)
    - [Благодарности](https://python-all.ru/3.0/whatsnew/2.0.html#acknowledgements)
- [Учебник Python](https://python-all.ru/3.0/tutorial/index.html)

  - [Разжигание аппетита](https://python-all.ru/3.0/tutorial/appetite.html)
  - [Использование интерпретатора Python](https://python-all.ru/3.0/tutorial/interpreter.html)

    - [Запуск интерпретатора](https://python-all.ru/3.0/tutorial/interpreter.html#invoking-the-interpreter)

      - [Передача аргументов](https://python-all.ru/3.0/tutorial/interpreter.html#argument-passing)
      - [Интерактивный режим](https://python-all.ru/3.0/tutorial/interpreter.html#interactive-mode)
    - [Интерпретатор и его окружение](https://python-all.ru/3.0/tutorial/interpreter.html#the-interpreter-and-its-environment)

      - [Обработка ошибок](https://python-all.ru/3.0/tutorial/interpreter.html#error-handling)
      - [Исполняемые скрипты Python](https://python-all.ru/3.0/tutorial/interpreter.html#executable-python-scripts)
      - [Кодировка исходного кода](https://python-all.ru/3.0/tutorial/interpreter.html#source-code-encoding)
      - [Интерактивный файл запуска](https://python-all.ru/3.0/tutorial/interpreter.html#the-interactive-startup-file)
  - [Неофициальное введение в Python](https://python-all.ru/3.0/tutorial/introduction.html)

    - [Использование Python как калькулятора](https://python-all.ru/3.0/tutorial/introduction.html#using-python-as-a-calculator)

      - [Числа](https://python-all.ru/3.0/tutorial/introduction.html#numbers)
      - [Строки](https://python-all.ru/3.0/tutorial/introduction.html#strings)
      - [О Юникоде](https://python-all.ru/3.0/tutorial/introduction.html#about-unicode)
      - [Списки](https://python-all.ru/3.0/tutorial/introduction.html#lists)
    - [Первые шаги в программировании](https://python-all.ru/3.0/tutorial/introduction.html#first-steps-towards-programming)
  - [Дополнительные средства управления потоком](https://python-all.ru/3.0/tutorial/controlflow.html)

    - [`if` инструкции](https://python-all.ru/3.0/tutorial/controlflow.html#if-statements)
    - [`for` инструкции](https://python-all.ru/3.0/tutorial/controlflow.html#for-statements)
    - [Функция `range()`](https://python-all.ru/3.0/tutorial/controlflow.html#the-range-function)
    - [`break` и `continue` инструкции, и `else` предложения в циклах](https://python-all.ru/3.0/tutorial/controlflow.html#break-and-continue-statements-and-else-clauses-on-loops)
    - [`pass` инструкции](https://python-all.ru/3.0/tutorial/controlflow.html#pass-statements)
    - [Определение функций](https://python-all.ru/3.0/tutorial/controlflow.html#defining-functions)
    - [Подробнее об определении функций](https://python-all.ru/3.0/tutorial/controlflow.html#more-on-defining-functions)

      - [Значения аргументов по умолчанию](https://python-all.ru/3.0/tutorial/controlflow.html#default-argument-values)
      - [Именованные аргументы](https://python-all.ru/3.0/tutorial/controlflow.html#keyword-arguments)
      - [Произвольные списки аргументов](https://python-all.ru/3.0/tutorial/controlflow.html#arbitrary-argument-lists)
      - [Распаковка списков аргументов](https://python-all.ru/3.0/tutorial/controlflow.html#unpacking-argument-lists)
      - [Лямбда-выражения](https://python-all.ru/3.0/tutorial/controlflow.html#lambda-forms)
      - [Строки документации](https://python-all.ru/3.0/tutorial/controlflow.html#documentation-strings)
    - [Интермеццо: Стиль кода](https://python-all.ru/3.0/tutorial/controlflow.html#intermezzo-coding-style)
  - [Структуры данных](https://python-all.ru/3.0/tutorial/datastructures.html)

    - [Подробнее о списках](https://python-all.ru/3.0/tutorial/datastructures.html#more-on-lists)

      - [Использование списков в качестве стеков](https://python-all.ru/3.0/tutorial/datastructures.html#using-lists-as-stacks)
      - [Использование списков в качестве очередей](https://python-all.ru/3.0/tutorial/datastructures.html#using-lists-as-queues)
      - [Списковые включения](https://python-all.ru/3.0/tutorial/datastructures.html#list-comprehensions)
      - [Вложенные списковые включения](https://python-all.ru/3.0/tutorial/datastructures.html#nested-list-comprehensions)
    - [Инструкция `del`](https://python-all.ru/3.0/tutorial/datastructures.html#the-del-statement)
    - [Кортежи и последовательности](https://python-all.ru/3.0/tutorial/datastructures.html#tuples-and-sequences)
    - [Множества](https://python-all.ru/3.0/tutorial/datastructures.html#sets)
    - [Словари](https://python-all.ru/3.0/tutorial/datastructures.html#dictionaries)
    - [Приёмы работы с циклами](https://python-all.ru/3.0/tutorial/datastructures.html#looping-techniques)
    - [Подробнее об условиях](https://python-all.ru/3.0/tutorial/datastructures.html#more-on-conditions)
    - [Сравнение последовательностей и других типов](https://python-all.ru/3.0/tutorial/datastructures.html#comparing-sequences-and-other-types)
  - [Модули](https://python-all.ru/3.0/tutorial/modules.html)

    - [Подробнее о модулях](https://python-all.ru/3.0/tutorial/modules.html#more-on-modules)

      - [Запуск модулей как скриптов](https://python-all.ru/3.0/tutorial/modules.html#executing-modules-as-scripts)
      - [Путь поиска модулей](https://python-all.ru/3.0/tutorial/modules.html#the-module-search-path)
      - [«Скомпилированные» файлы Python](https://python-all.ru/3.0/tutorial/modules.html#compiled-python-files)
    - [Стандартные модули](https://python-all.ru/3.0/tutorial/modules.html#standard-modules)
    - [Функция `dir()`](https://python-all.ru/3.0/tutorial/modules.html#the-dir-function)
    - [Пакеты](https://python-all.ru/3.0/tutorial/modules.html#packages)

      - [Импорт \* из пакета](https://python-all.ru/3.0/tutorial/modules.html#importing-from-a-package)
      - [Ссылки внутри пакета](https://python-all.ru/3.0/tutorial/modules.html#intra-package-references)
      - [Пакеты в нескольких каталогах](https://python-all.ru/3.0/tutorial/modules.html#packages-in-multiple-directories)
  - [Ввод и вывод](https://python-all.ru/3.0/tutorial/inputoutput.html)

    - [Более изощрённое форматирование вывода](https://python-all.ru/3.0/tutorial/inputoutput.html#fancier-output-formatting)

      - [Старое форматирование строк](https://python-all.ru/3.0/tutorial/inputoutput.html#old-string-formatting)
    - [Чтение и запись файлов](https://python-all.ru/3.0/tutorial/inputoutput.html#reading-and-writing-files)

      - [Методы файловых объектов](https://python-all.ru/3.0/tutorial/inputoutput.html#methods-of-file-objects)
      - [Модуль `pickle`](https://python-all.ru/3.0/tutorial/inputoutput.html#the-pickle-module)
  - [Ошибки и исключения](https://python-all.ru/3.0/tutorial/errors.html)

    - [Синтаксические ошибки](https://python-all.ru/3.0/tutorial/errors.html#syntax-errors)
    - [Исключения](https://python-all.ru/3.0/tutorial/errors.html#exceptions)
    - [Обработка исключений](https://python-all.ru/3.0/tutorial/errors.html#handling-exceptions)
    - [Возбуждение исключений](https://python-all.ru/3.0/tutorial/errors.html#raising-exceptions)
    - [Определяемые пользователем исключения](https://python-all.ru/3.0/tutorial/errors.html#user-defined-exceptions)
    - [Определение действий по очистке](https://python-all.ru/3.0/tutorial/errors.html#defining-clean-up-actions)
    - [Предопределённые действия по очистке](https://python-all.ru/3.0/tutorial/errors.html#predefined-clean-up-actions)
  - [Классы](https://python-all.ru/3.0/tutorial/classes.html)

    - [Несколько слов о терминологии](https://python-all.ru/3.0/tutorial/classes.html#a-word-about-terminology)
    - [Области видимости и пространства имён в Python](https://python-all.ru/3.0/tutorial/classes.html#python-scopes-and-name-spaces)

      - [Пример областей видимости и пространств имён](https://python-all.ru/3.0/tutorial/classes.html#scopes-and-namespaces-example)
    - [Первое знакомство с классами](https://python-all.ru/3.0/tutorial/classes.html#a-first-look-at-classes)

      - [Синтаксис определения класса](https://python-all.ru/3.0/tutorial/classes.html#class-definition-syntax)
      - [Объекты классов](https://python-all.ru/3.0/tutorial/classes.html#class-objects)
      - [Объекты экземпляров](https://python-all.ru/3.0/tutorial/classes.html#instance-objects)
      - [Объекты методов](https://python-all.ru/3.0/tutorial/classes.html#method-objects)
    - [Разные замечания](https://python-all.ru/3.0/tutorial/classes.html#random-remarks)
    - [Наследование](https://python-all.ru/3.0/tutorial/classes.html#inheritance)

      - [Множественное наследование](https://python-all.ru/3.0/tutorial/classes.html#multiple-inheritance)
    - [Приватные переменные](https://python-all.ru/3.0/tutorial/classes.html#private-variables)
    - [Разное](https://python-all.ru/3.0/tutorial/classes.html#odds-and-ends)
    - [Исключения – это тоже классы](https://python-all.ru/3.0/tutorial/classes.html#exceptions-are-classes-too)
    - [Итераторы](https://python-all.ru/3.0/tutorial/classes.html#iterators)
    - [Генераторы](https://python-all.ru/3.0/tutorial/classes.html#generators)
    - [Генераторные выражения](https://python-all.ru/3.0/tutorial/classes.html#generator-expressions)
  - [Краткий обзор стандартной библиотеки](https://python-all.ru/3.0/tutorial/stdlib.html)

    - [Интерфейс операционной системы](https://python-all.ru/3.0/tutorial/stdlib.html#operating-system-interface)
    - [Шаблоны имён файлов](https://python-all.ru/3.0/tutorial/stdlib.html#file-wildcards)
    - [Аргументы командной строки](https://python-all.ru/3.0/tutorial/stdlib.html#command-line-arguments)
    - [Перенаправление вывода ошибок и завершение программы](https://python-all.ru/3.0/tutorial/stdlib.html#error-output-redirection-and-program-termination)
    - [Поиск по шаблону в строках](https://python-all.ru/3.0/tutorial/stdlib.html#string-pattern-matching)
    - [Математика](https://python-all.ru/3.0/tutorial/stdlib.html#mathematics)
    - [Доступ к интернету](https://python-all.ru/3.0/tutorial/stdlib.html#internet-access)
    - [Даты и время](https://python-all.ru/3.0/tutorial/stdlib.html#dates-and-times)
    - [Сжатие данных](https://python-all.ru/3.0/tutorial/stdlib.html#data-compression)
    - [Измерение производительности](https://python-all.ru/3.0/tutorial/stdlib.html#performance-measurement)
    - [Контроль качества](https://python-all.ru/3.0/tutorial/stdlib.html#quality-control)
    - [Батарейки в комплекте](https://python-all.ru/3.0/tutorial/stdlib.html#batteries-included)
  - [Краткий обзор стандартной библиотеки – часть II](https://python-all.ru/3.0/tutorial/stdlib2.html)

    - [Форматирование вывода](https://python-all.ru/3.0/tutorial/stdlib2.html#output-formatting)
    - [Шаблоны](https://python-all.ru/3.0/tutorial/stdlib2.html#templating)
    - [Работа с двоичными данными: структуры записей](https://python-all.ru/3.0/tutorial/stdlib2.html#working-with-binary-data-record-layouts)
    - [Многопоточность](https://python-all.ru/3.0/tutorial/stdlib2.html#multi-threading)
    - [Логирование](https://python-all.ru/3.0/tutorial/stdlib2.html#logging)
    - [Слабые ссылки](https://python-all.ru/3.0/tutorial/stdlib2.html#weak-references)
    - [Инструменты для работы со списками](https://python-all.ru/3.0/tutorial/stdlib2.html#tools-for-working-with-lists)
    - [Арифметика с плавающей запятой десятичных чисел](https://python-all.ru/3.0/tutorial/stdlib2.html#decimal-floating-point-arithmetic)
  - [Что дальше?](https://python-all.ru/3.0/tutorial/whatnow.html)
  - [Интерактивное редактирование ввода и подстановка истории](https://python-all.ru/3.0/tutorial/interactive.html)

    - [Редактирование строки](https://python-all.ru/3.0/tutorial/interactive.html#line-editing)
    - [Подстановка истории](https://python-all.ru/3.0/tutorial/interactive.html#history-substitution)
    - [Привязки клавиш](https://python-all.ru/3.0/tutorial/interactive.html#key-bindings)
    - [Комментарии](https://python-all.ru/3.0/tutorial/interactive.html#commentary)
  - [Арифметика с плавающей запятой: проблемы и ограничения](https://python-all.ru/3.0/tutorial/floatingpoint.html)

    - [Ошибка представления](https://python-all.ru/3.0/tutorial/floatingpoint.html#representation-error)
- [Использование Python](https://python-all.ru/3.0/using/index.html)

  - [Командная строка и окружение](https://python-all.ru/3.0/using/cmdline.html)

    - [Командная строка](https://python-all.ru/3.0/using/cmdline.html#command-line)

      - [Опции интерфейса](https://python-all.ru/3.0/using/cmdline.html#interface-options)
      - [Общие опции](https://python-all.ru/3.0/using/cmdline.html#generic-options)
      - [Прочие опции](https://python-all.ru/3.0/using/cmdline.html#miscellaneous-options)
    - [Переменные окружения](https://python-all.ru/3.0/using/cmdline.html#environment-variables)

      - [Переменные режима отладки](https://python-all.ru/3.0/using/cmdline.html#debug-mode-variables)
  - [Использование Python на платформах Unix](https://python-all.ru/3.0/using/unix.html)

    - [Получение и установка последней версии Python](https://python-all.ru/3.0/using/unix.html#getting-and-installing-the-latest-version-of-python)

      - [В Linux](https://python-all.ru/3.0/using/unix.html#on-linux)
      - [В FreeBSD и OpenBSD](https://python-all.ru/3.0/using/unix.html#on-freebsd-and-openbsd)
      - [В OpenSolaris](https://python-all.ru/3.0/using/unix.html#on-opensolaris)
    - [Сборка Python](https://python-all.ru/3.0/using/unix.html#building-python)
    - [Пути и файлы, связанные с Python](https://python-all.ru/3.0/using/unix.html#python-related-paths-and-files)
    - [Разное](https://python-all.ru/3.0/using/unix.html#miscellaneous)
    - [Редакторы](https://python-all.ru/3.0/using/unix.html#editors)
  - [Использование Python в Windows](https://python-all.ru/3.0/using/windows.html)

    - [Установка Python](https://python-all.ru/3.0/using/windows.html#installing-python)
    - [Альтернативные пакеты](https://python-all.ru/3.0/using/windows.html#alternative-bundles)
    - [Настройка Python](https://python-all.ru/3.0/using/windows.html#configuring-python)

      - [Отступление: настройка переменных окружения](https://python-all.ru/3.0/using/windows.html#excursus-setting-environment-variables)
      - [Поиск исполняемого файла Python](https://python-all.ru/3.0/using/windows.html#finding-the-python-executable)
      - [Поиск модулей](https://python-all.ru/3.0/using/windows.html#finding-modules)
      - [Выполнение скриптов](https://python-all.ru/3.0/using/windows.html#executing-scripts)
    - [Дополнительные модули](https://python-all.ru/3.0/using/windows.html#additional-modules)

      - [PyWin32](https://python-all.ru/3.0/using/windows.html#pywin32)
      - [Py2exe](https://python-all.ru/3.0/using/windows.html#py2exe)
      - [WConio](https://python-all.ru/3.0/using/windows.html#wconio)
    - [Компиляция Python в Windows](https://python-all.ru/3.0/using/windows.html#compiling-python-on-windows)
    - [Другие ресурсы](https://python-all.ru/3.0/using/windows.html#other-resources)
  - [Использование Python на Macintosh](https://python-all.ru/3.0/using/mac.html)

    - [Получение и установка MacPython](https://python-all.ru/3.0/using/mac.html#getting-and-installing-macpython)

      - [Как запустить скрипт Python](https://python-all.ru/3.0/using/mac.html#how-to-run-a-python-script)
      - [Запуск скриптов с графическим интерфейсом](https://python-all.ru/3.0/using/mac.html#running-scripts-with-a-gui)
      - [Настройка](https://python-all.ru/3.0/using/mac.html#configuration)
    - [Среда разработки](https://python-all.ru/3.0/using/mac.html#the-ide)
    - [Установка дополнительных пакетов Python](https://python-all.ru/3.0/using/mac.html#installing-additional-python-packages)
    - [Программирование GUI на Mac](https://python-all.ru/3.0/using/mac.html#gui-programming-on-the-mac)
    - [Распространение приложений Python на Mac](https://python-all.ru/3.0/using/mac.html#distributing-python-applications-on-the-mac)
    - [Скриптинг приложений](https://python-all.ru/3.0/using/mac.html#application-scripting)
    - [Другие ресурсы](https://python-all.ru/3.0/using/mac.html#other-resources)
- [Справочник по языку Python](https://python-all.ru/3.0/reference/index.html)

  - [Введение](https://python-all.ru/3.0/reference/introduction.html)

    - [Альтернативные реализации](https://python-all.ru/3.0/reference/introduction.html#alternate-implementations)
    - [Нотация](https://python-all.ru/3.0/reference/introduction.html#id2)
  - [Лексический анализ](https://python-all.ru/3.0/reference/lexical_analysis.html)

    - [Структура строк](https://python-all.ru/3.0/reference/lexical_analysis.html#id1)

      - [Логические строки](https://python-all.ru/3.0/reference/lexical_analysis.html#id2)
      - [Физические строки](https://python-all.ru/3.0/reference/lexical_analysis.html#id3)
      - [Комментарии](https://python-all.ru/3.0/reference/lexical_analysis.html#id4)
      - [Объявления кодировки](https://python-all.ru/3.0/reference/lexical_analysis.html#encoding-declarations)
      - [Явное объединение строк](https://python-all.ru/3.0/reference/lexical_analysis.html#explicit-line-joining)
      - [Неявное объединение строк](https://python-all.ru/3.0/reference/lexical_analysis.html#implicit-line-joining)
      - [Пустые строки](https://python-all.ru/3.0/reference/lexical_analysis.html#id5)
      - [Отступы](https://python-all.ru/3.0/reference/lexical_analysis.html#id6)
      - [Пробелы между токенами](https://python-all.ru/3.0/reference/lexical_analysis.html#whitespace-between-tokens)
    - [Другие токены](https://python-all.ru/3.0/reference/lexical_analysis.html#id7)
    - [Идентификаторы и ключевые слова](https://python-all.ru/3.0/reference/lexical_analysis.html#identifiers-and-keywords)

      - [Ключевые слова](https://python-all.ru/3.0/reference/lexical_analysis.html#id8)
      - [Зарезервированные классы идентификаторов](https://python-all.ru/3.0/reference/lexical_analysis.html#reserved-classes-of-identifiers)
    - [Литералы](https://python-all.ru/3.0/reference/lexical_analysis.html#id9)

      - [Строковые литералы и литералы байтов](https://python-all.ru/3.0/reference/lexical_analysis.html#string-and-bytes-literals)
      - [Конкатенация строковых литералов](https://python-all.ru/3.0/reference/lexical_analysis.html#string-literal-concatenation)
      - [Числовые литералы](https://python-all.ru/3.0/reference/lexical_analysis.html#numeric-literals)
      - [Целочисленные литералы](https://python-all.ru/3.0/reference/lexical_analysis.html#integer-literals)
      - [Литералы с плавающей точкой](https://python-all.ru/3.0/reference/lexical_analysis.html#floating-point-literals)
      - [Мнимые литералы](https://python-all.ru/3.0/reference/lexical_analysis.html#imaginary-literals)
    - [Операторы](https://python-all.ru/3.0/reference/lexical_analysis.html#id10)
    - [Разделители](https://python-all.ru/3.0/reference/lexical_analysis.html#id11)
  - [Модель данных](https://python-all.ru/3.0/reference/datamodel.html)

    - [Объекты, значения и типы](https://python-all.ru/3.0/reference/datamodel.html#objects-values-and-types)
    - [Стандартная иерархия типов](https://python-all.ru/3.0/reference/datamodel.html#the-standard-type-hierarchy)
    - [Имена специальных методов](https://python-all.ru/3.0/reference/datamodel.html#special-method-names)

      - [Базовая настройка](https://python-all.ru/3.0/reference/datamodel.html#basic-customization)
      - [Настройка доступа к атрибутам](https://python-all.ru/3.0/reference/datamodel.html#customizing-attribute-access)

        - [Реализация дескрипторов](https://python-all.ru/3.0/reference/datamodel.html#implementing-descriptors)
        - [Вызов дескрипторов](https://python-all.ru/3.0/reference/datamodel.html#invoking-descriptors)
        - [\_\_slots\_\_](https://python-all.ru/3.0/reference/datamodel.html#id3)

          - [Примечания по использованию *\_\_slots\_\_*](https://python-all.ru/3.0/reference/datamodel.html#notes-on-using-slots)
      - [Настройка создания классов](https://python-all.ru/3.0/reference/datamodel.html#customizing-class-creation)
      - [Эмуляция вызываемых объектов](https://python-all.ru/3.0/reference/datamodel.html#emulating-callable-objects)
      - [Эмуляция типов-контейнеров](https://python-all.ru/3.0/reference/datamodel.html#emulating-container-types)
      - [Эмуляция числовых типов](https://python-all.ru/3.0/reference/datamodel.html#emulating-numeric-types)
      - [Менеджеры контекста оператора with](https://python-all.ru/3.0/reference/datamodel.html#with-statement-context-managers)
      - [Поиск специальных методов](https://python-all.ru/3.0/reference/datamodel.html#special-method-lookup)
  - [Модель выполнения](https://python-all.ru/3.0/reference/executionmodel.html)

    - [Именование и связывание](https://python-all.ru/3.0/reference/executionmodel.html#naming-and-binding)

      - [Взаимодействие с динамическими возможностями](https://python-all.ru/3.0/reference/executionmodel.html#interaction-with-dynamic-features)
    - [Исключения](https://python-all.ru/3.0/reference/executionmodel.html#id2)
  - [Выражения](https://python-all.ru/3.0/reference/expressions.html)

    - [Арифметические преобразования](https://python-all.ru/3.0/reference/expressions.html#arithmetic-conversions)
    - [Атомы](https://python-all.ru/3.0/reference/expressions.html#id2)

      - [Идентификаторы (имена)](https://python-all.ru/3.0/reference/expressions.html#identifiers-names)
      - [Литералы](https://python-all.ru/3.0/reference/expressions.html#literals)
      - [Формы в скобках](https://python-all.ru/3.0/reference/expressions.html#parenthesized-forms)
      - [Представления списков, множеств и словарей](https://python-all.ru/3.0/reference/expressions.html#displays-for-lists-sets-and-dictionaries)
      - [Представления списков](https://python-all.ru/3.0/reference/expressions.html#list-displays)
      - [Представления множеств](https://python-all.ru/3.0/reference/expressions.html#set-displays)
      - [Представления словарей](https://python-all.ru/3.0/reference/expressions.html#dictionary-displays)
      - [Генераторные выражения](https://python-all.ru/3.0/reference/expressions.html#generator-expressions)
      - [Выражения yield](https://python-all.ru/3.0/reference/expressions.html#yield-expressions)
    - [Первичные выражения](https://python-all.ru/3.0/reference/expressions.html#id3)

      - [Обращение к атрибутам](https://python-all.ru/3.0/reference/expressions.html#id4)
      - [Индексация](https://python-all.ru/3.0/reference/expressions.html#id5)
      - [Срезы](https://python-all.ru/3.0/reference/expressions.html#id6)
      - [Вызовы](https://python-all.ru/3.0/reference/expressions.html#id7)
    - [Оператор возведения в степень](https://python-all.ru/3.0/reference/expressions.html#the-power-operator)
    - [Унарные арифметические операции](https://python-all.ru/3.0/reference/expressions.html#unary-arithmetic-operations)
    - [Бинарные арифметические операции](https://python-all.ru/3.0/reference/expressions.html#binary-arithmetic-operations)
    - [Операции сдвига](https://python-all.ru/3.0/reference/expressions.html#shifting-operations)
    - [Бинарные поразрядные операции](https://python-all.ru/3.0/reference/expressions.html#binary-bitwise-operations)
    - [Сравнения](https://python-all.ru/3.0/reference/expressions.html#id10)
    - [Логические операции](https://python-all.ru/3.0/reference/expressions.html#boolean-operations)
    - [Лямбда-выражения](https://python-all.ru/3.0/reference/expressions.html#id15)
    - [Списки выражений](https://python-all.ru/3.0/reference/expressions.html#expression-lists)
    - [Порядок вычислений](https://python-all.ru/3.0/reference/expressions.html#evaluation-order)
    - [Сводка](https://python-all.ru/3.0/reference/expressions.html#summary)
  - [Простые инструкции](https://python-all.ru/3.0/reference/simple_stmts.html)

    - [Инструкции-выражения](https://python-all.ru/3.0/reference/simple_stmts.html#expression-statements)
    - [Инструкции присваивания](https://python-all.ru/3.0/reference/simple_stmts.html#assignment-statements)

      - [Составные инструкции присваивания](https://python-all.ru/3.0/reference/simple_stmts.html#augmented-assignment-statements)
    - [Инструкция `assert`](https://python-all.ru/3.0/reference/simple_stmts.html#the-assert-statement)
    - [Инструкция `pass`](https://python-all.ru/3.0/reference/simple_stmts.html#the-pass-statement)
    - [Инструкция `del`](https://python-all.ru/3.0/reference/simple_stmts.html#the-del-statement)
    - [Инструкция `return`](https://python-all.ru/3.0/reference/simple_stmts.html#the-return-statement)
    - [Инструкция `yield`](https://python-all.ru/3.0/reference/simple_stmts.html#the-yield-statement)
    - [Инструкция `raise`](https://python-all.ru/3.0/reference/simple_stmts.html#the-raise-statement)
    - [Инструкция `break`](https://python-all.ru/3.0/reference/simple_stmts.html#the-break-statement)
    - [Инструкция `continue`](https://python-all.ru/3.0/reference/simple_stmts.html#the-continue-statement)
    - [Инструкция `import`](https://python-all.ru/3.0/reference/simple_stmts.html#the-import-statement)

      - [Future-инструкции](https://python-all.ru/3.0/reference/simple_stmts.html#future-statements)
    - [Инструкция `global`](https://python-all.ru/3.0/reference/simple_stmts.html#the-global-statement)
    - [Инструкция `nonlocal`](https://python-all.ru/3.0/reference/simple_stmts.html#the-nonlocal-statement)
  - [Составные инструкции](https://python-all.ru/3.0/reference/compound_stmts.html)

    - [Инструкция `if`](https://python-all.ru/3.0/reference/compound_stmts.html#the-if-statement)
    - [Инструкция `while`](https://python-all.ru/3.0/reference/compound_stmts.html#the-while-statement)
    - [Инструкция `for`](https://python-all.ru/3.0/reference/compound_stmts.html#the-for-statement)
    - [Инструкция `try`](https://python-all.ru/3.0/reference/compound_stmts.html#the-try-statement)
    - [Инструкция `with`](https://python-all.ru/3.0/reference/compound_stmts.html#the-with-statement)
    - [Определения функций](https://python-all.ru/3.0/reference/compound_stmts.html#function-definitions)
    - [Определения классов](https://python-all.ru/3.0/reference/compound_stmts.html#class-definitions)
  - [Компоненты верхнего уровня](https://python-all.ru/3.0/reference/toplevel_components.html)

    - [Полные программы на Python](https://python-all.ru/3.0/reference/toplevel_components.html#complete-python-programs)
    - [Ввод из файла](https://python-all.ru/3.0/reference/toplevel_components.html#id1)
    - [Интерактивный ввод](https://python-all.ru/3.0/reference/toplevel_components.html#interactive-input)
    - [Ввод выражений](https://python-all.ru/3.0/reference/toplevel_components.html#id2)
  - [Полная спецификация грамматики](https://python-all.ru/3.0/reference/grammar.html)
- [Стандартная библиотека Python](https://python-all.ru/3.0/library/index.html)

  - [Введение](https://python-all.ru/3.0/library/intro.html)
  - [Встроенные функции](https://python-all.ru/3.0/library/functions.html)
  - [Встроенные константы](https://python-all.ru/3.0/library/constants.html)

    - [Константы, добавляемые модулем `site`](https://python-all.ru/3.0/library/constants.html#constants-added-by-the-site-module)
  - [Встроенные объекты](https://python-all.ru/3.0/library/objects.html)
  - [Встроенные типы](https://python-all.ru/3.0/library/stdtypes.html)

    - [Проверка истинности](https://python-all.ru/3.0/library/stdtypes.html#truth-value-testing)
    - [Булевы операции – `and`, `or`, `not`](https://python-all.ru/3.0/library/stdtypes.html#boolean-operations-and-or-not)
    - [Сравнения](https://python-all.ru/3.0/library/stdtypes.html#comparisons)
    - [Числовые типы – `int`, `float`, `complex`](https://python-all.ru/3.0/library/stdtypes.html#numeric-types-int-float-complex)

      - [Битовые операции над целыми числами](https://python-all.ru/3.0/library/stdtypes.html#bit-string-operations-on-integer-types)
      - [Дополнительные методы целых типов](https://python-all.ru/3.0/library/stdtypes.html#additional-methods-on-integer-types)
      - [Дополнительные методы типа float](https://python-all.ru/3.0/library/stdtypes.html#additional-methods-on-float)
    - [Типы итераторов](https://python-all.ru/3.0/library/stdtypes.html#iterator-types)
    - [Типы последовательностей – `str`, `bytes`, `bytearray`, `list`, `tuple`, `range`](https://python-all.ru/3.0/library/stdtypes.html#sequence-types-str-bytes-bytearray-list-tuple-range)

      - [Методы строк](https://python-all.ru/3.0/library/stdtypes.html#id4)
      - [Устаревшие операции форматирования строк](https://python-all.ru/3.0/library/stdtypes.html#old-string-formatting-operations)
      - [Тип range](https://python-all.ru/3.0/library/stdtypes.html#range-type)
      - [Изменяемые типы последовательностей](https://python-all.ru/3.0/library/stdtypes.html#mutable-sequence-types)
      - [Методы байтов и байтовых массивов](https://python-all.ru/3.0/library/stdtypes.html#bytes-and-byte-array-methods)
    - [Типы множеств – `set`, `frozenset`](https://python-all.ru/3.0/library/stdtypes.html#set-types-set-frozenset)
    - [Типы отображений – `dict`](https://python-all.ru/3.0/library/stdtypes.html#mapping-types-dict)

      - [Объекты представлений словаря](https://python-all.ru/3.0/library/stdtypes.html#dictionary-view-objects)
    - [Объекты файлов](https://python-all.ru/3.0/library/stdtypes.html#file-objects)
    - [Тип memoryview](https://python-all.ru/3.0/library/stdtypes.html#memoryview-types)
    - [Типы контекстных менеджеров](https://python-all.ru/3.0/library/stdtypes.html#context-manager-types)
    - [Прочие встроенные типы](https://python-all.ru/3.0/library/stdtypes.html#other-built-in-types)

      - [Модули](https://python-all.ru/3.0/library/stdtypes.html#modules)
      - [Классы и экземпляры классов](https://python-all.ru/3.0/library/stdtypes.html#classes-and-class-instances)
      - [Функции](https://python-all.ru/3.0/library/stdtypes.html#functions)
      - [Методы](https://python-all.ru/3.0/library/stdtypes.html#methods)
      - [Объекты кода](https://python-all.ru/3.0/library/stdtypes.html#code-objects)
      - [Объекты типов](https://python-all.ru/3.0/library/stdtypes.html#type-objects)
      - [Объект None](https://python-all.ru/3.0/library/stdtypes.html#the-null-object)
      - [Объект Ellipsis](https://python-all.ru/3.0/library/stdtypes.html#the-ellipsis-object)
      - [Логические значения](https://python-all.ru/3.0/library/stdtypes.html#boolean-values)
      - [Внутренние объекты](https://python-all.ru/3.0/library/stdtypes.html#internal-objects)
    - [Специальные атрибуты](https://python-all.ru/3.0/library/stdtypes.html#special-attributes)
  - [Встроенные исключения](https://python-all.ru/3.0/library/exceptions.html)
  - [Строковые сервисы](https://python-all.ru/3.0/library/strings.html)

    - [`string` – Общие операции со строками](https://python-all.ru/3.0/library/string.html)

      - [Строковые константы](https://python-all.ru/3.0/library/string.html#string-constants)
      - [Форматирование строк](https://python-all.ru/3.0/library/string.html#id1)
      - [Синтаксис строки форматирования](https://python-all.ru/3.0/library/string.html#format-string-syntax)

        - [Мини-язык спецификации формата](https://python-all.ru/3.0/library/string.html#format-specification-mini-language)
      - [Строки-шаблоны](https://python-all.ru/3.0/library/string.html#id3)
      - [Строковые функции](https://python-all.ru/3.0/library/string.html#string-functions)
    - [`re` – Операции с регулярными выражениями](https://python-all.ru/3.0/library/re.html)

      - [Синтаксис регулярных выражений](https://python-all.ru/3.0/library/re.html#regular-expression-syntax)
      - [Сопоставление и поиск](https://python-all.ru/3.0/library/re.html#matching-vs-searching)
      - [Содержимое модуля](https://python-all.ru/3.0/library/re.html#module-contents)
      - [Объекты регулярных выражений](https://python-all.ru/3.0/library/re.html#regular-expression-objects)
      - [Объекты Match](https://python-all.ru/3.0/library/re.html#id1)
      - [Примеры](https://python-all.ru/3.0/library/re.html#examples)

        - [Проверка наличия пары](https://python-all.ru/3.0/library/re.html#checking-for-a-pair)
        - [Имитация scanf()](https://python-all.ru/3.0/library/re.html#simulating-scanf)
        - [Избегание рекурсии](https://python-all.ru/3.0/library/re.html#avoiding-recursion)
        - [search() и match()](https://python-all.ru/3.0/library/re.html#search-vs-match)
        - [Создание телефонного справочника](https://python-all.ru/3.0/library/re.html#making-a-phonebook)
        - [Преобразование текста](https://python-all.ru/3.0/library/re.html#text-munging)
        - [Поиск всех наречий](https://python-all.ru/3.0/library/re.html#finding-all-adverbs)
        - [Поиск всех наречий и их позиций](https://python-all.ru/3.0/library/re.html#finding-all-adverbs-and-their-positions)
        - [Сырая строковая нотация](https://python-all.ru/3.0/library/re.html#raw-string-notation)
    - [`struct` – Интерпретирует байты как упакованные двоичные данные](https://python-all.ru/3.0/library/struct.html)

      - [Объекты struct](https://python-all.ru/3.0/library/struct.html#id1)
    - [`difflib` – Вспомогательные функции для вычисления различий](https://python-all.ru/3.0/library/difflib.html)

      - [Объекты SequenceMatcher](https://python-all.ru/3.0/library/difflib.html#sequencematcher-objects)
      - [Примеры SequenceMatcher](https://python-all.ru/3.0/library/difflib.html#id1)
      - [Объекты Differ](https://python-all.ru/3.0/library/difflib.html#id2)
      - [Пример Differ](https://python-all.ru/3.0/library/difflib.html#differ-example)
      - [Интерфейс командной строки для difflib](https://python-all.ru/3.0/library/difflib.html#a-command-line-interface-to-difflib)
    - [`textwrap` – Перенос и заполнение текста](https://python-all.ru/3.0/library/textwrap.html)
    - [`codecs` – Реестр кодеков и базовые классы](https://python-all.ru/3.0/library/codecs.html)

      - [Базовые классы кодеков](https://python-all.ru/3.0/library/codecs.html#id1)

        - [Объекты Codec](https://python-all.ru/3.0/library/codecs.html#id2)
        - [Объекты IncrementalEncoder](https://python-all.ru/3.0/library/codecs.html#incrementalencoder-objects)
        - [Объекты IncrementalDecoder](https://python-all.ru/3.0/library/codecs.html#incrementaldecoder-objects)
        - [Объекты StreamWriter](https://python-all.ru/3.0/library/codecs.html#streamwriter-objects)
        - [Объекты StreamReader](https://python-all.ru/3.0/library/codecs.html#streamreader-objects)
        - [Объекты StreamReaderWriter](https://python-all.ru/3.0/library/codecs.html#streamreaderwriter-objects)
        - [Объекты StreamRecoder](https://python-all.ru/3.0/library/codecs.html#streamrecoder-objects)
      - [Кодировки и Юникод](https://python-all.ru/3.0/library/codecs.html#encodings-and-unicode)
      - [Стандартные кодировки](https://python-all.ru/3.0/library/codecs.html#id3)
      - [`encodings.idna` – Интернационализированные доменные имена в приложениях](https://python-all.ru/3.0/library/codecs.html#module-encodings.idna)
      - [`encodings.utf_8_sig` – Кодек UTF-8 с сигнатурой BOM](https://python-all.ru/3.0/library/codecs.html#module-encodings.utf_8_sig)
    - [`unicodedata` – База данных Unicode](https://python-all.ru/3.0/library/unicodedata.html)
    - [`stringprep` – Подготовка строк для интернета](https://python-all.ru/3.0/library/stringprep.html)
  - [Типы данных](https://python-all.ru/3.0/library/datatypes.html)

    - [`datetime` – Базовые типы даты и времени](https://python-all.ru/3.0/library/datetime.html)

      - [Доступные типы](https://python-all.ru/3.0/library/datetime.html#available-types)
      - [`timedelta` Объекты](https://python-all.ru/3.0/library/datetime.html#timedelta-objects)
      - [`date` Объекты](https://python-all.ru/3.0/library/datetime.html#date-objects)
      - [`datetime` Объекты](https://python-all.ru/3.0/library/datetime.html#datetime-objects)
      - [`time` Объекты](https://python-all.ru/3.0/library/datetime.html#time-objects)
      - [`tzinfo` Объекты](https://python-all.ru/3.0/library/datetime.html#tzinfo-objects)
      - [`strftime()` Поведение](https://python-all.ru/3.0/library/datetime.html#id1)
    - [`calendar` – Общие функции, связанные с календарём](https://python-all.ru/3.0/library/calendar.html)
    - [`collections` – Типы данных-контейнеры](https://python-all.ru/3.0/library/collections.html)

      - [ABC – абстрактные базовые классы](https://python-all.ru/3.0/library/collections.html#abcs-abstract-base-classes)
      - [`deque` объекты](https://python-all.ru/3.0/library/collections.html#id1)

        - [`deque` Рецепты](https://python-all.ru/3.0/library/collections.html#id2)
      - [`defaultdict` объекты](https://python-all.ru/3.0/library/collections.html#id3)

        - [`defaultdict` Примеры](https://python-all.ru/3.0/library/collections.html#id4)
      - [`namedtuple()` Фабричная функция для кортежей с именованными полями](https://python-all.ru/3.0/library/collections.html#namedtuple-factory-function-for-tuples-with-named-fields)
      - [`UserDict` объекты](https://python-all.ru/3.0/library/collections.html#userdict-objects)
      - [`UserList` объекты](https://python-all.ru/3.0/library/collections.html#userlist-objects)
      - [`UserString` объекты](https://python-all.ru/3.0/library/collections.html#userstring-objects)
    - [`heapq` – Алгоритм кучи (пирамидальная очередь)](https://python-all.ru/3.0/library/heapq.html)

      - [Теория](https://python-all.ru/3.0/library/heapq.html#theory)
    - [`bisect` – Алгоритм двоичного поиска в массиве](https://python-all.ru/3.0/library/bisect.html)

      - [Примеры](https://python-all.ru/3.0/library/bisect.html#examples)
    - [`array` – Эффективные массивы числовых значений](https://python-all.ru/3.0/library/array.html)
    - [`sched` – Планировщик событий](https://python-all.ru/3.0/library/sched.html)

      - [Объекты планировщика](https://python-all.ru/3.0/library/sched.html#id1)
    - [`queue` – A synchronized queue class](https://python-all.ru/3.0/library/queue.html)

      - [Объекты очередей](https://python-all.ru/3.0/library/queue.html#queue-objects)
    - [`weakref` – Слабые ссылки](https://python-all.ru/3.0/library/weakref.html)

      - [Объекты слабых ссылок](https://python-all.ru/3.0/library/weakref.html#weak-reference-objects)
      - [Пример](https://python-all.ru/3.0/library/weakref.html#example)
    - [`types` – Имена встроенных типов](https://python-all.ru/3.0/library/types.html)
    - [`copy` – Операции поверхностного и глубокого копирования](https://python-all.ru/3.0/library/copy.html)
    - [`pprint` – Красивый вывод данных](https://python-all.ru/3.0/library/pprint.html)

      - [Объекты PrettyPrinter](https://python-all.ru/3.0/library/pprint.html#id1)
      - [Пример pprint](https://python-all.ru/3.0/library/pprint.html#id2)
    - [`reprlib` – Альтернативная реализация `repr()`](https://python-all.ru/3.0/library/reprlib.html)

      - [Объекты Repr](https://python-all.ru/3.0/library/reprlib.html#id1)
      - [Создание подклассов Repr](https://python-all.ru/3.0/library/reprlib.html#subclassing-repr-objects)
  - [Числовые и математические модули](https://python-all.ru/3.0/library/numeric.html)

    - [`numbers` – Числовые абстрактные базовые классы](https://python-all.ru/3.0/library/numbers.html)

      - [Числовая иерархия](https://python-all.ru/3.0/library/numbers.html#the-numeric-tower)
      - [Примечания для разработчиков типов](https://python-all.ru/3.0/library/numbers.html#notes-for-type-implementors)

        - [Добавление дополнительных числовых абстрактных базовых классов](https://python-all.ru/3.0/library/numbers.html#adding-more-numeric-abcs)
        - [Реализация арифметических операций](https://python-all.ru/3.0/library/numbers.html#implementing-the-arithmetic-operations)
    - [`math` – Математические функции](https://python-all.ru/3.0/library/math.html)

      - [Теоретико-числовые функции и функции представления](https://python-all.ru/3.0/library/math.html#number-theoretic-and-representation-functions)
      - [Степенные и логарифмические функции](https://python-all.ru/3.0/library/math.html#power-and-logarithmic-functions)
      - [Тригонометрические функции](https://python-all.ru/3.0/library/math.html#trigonometric-functions)
      - [Преобразование угловых величин](https://python-all.ru/3.0/library/math.html#angular-conversion)
      - [Гиперболические функции](https://python-all.ru/3.0/library/math.html#hyperbolic-functions)
    - [Константы](https://python-all.ru/3.0/library/math.html#constants)
    - [`cmath` – Математические функции для комплексных чисел](https://python-all.ru/3.0/library/cmath.html)

      - [Комплексные координаты](https://python-all.ru/3.0/library/cmath.html#complex-coordinates)
      - [Функции cmath](https://python-all.ru/3.0/library/cmath.html#cmath-functions)
    - [`decimal` – Десятичная арифметика с фиксированной и плавающей точкой](https://python-all.ru/3.0/library/decimal.html)

      - [Краткое руководство](https://python-all.ru/3.0/library/decimal.html#quick-start-tutorial)
      - [Объекты Decimal](https://python-all.ru/3.0/library/decimal.html#decimal-objects)

        - [Логические операнды](https://python-all.ru/3.0/library/decimal.html#logical-operands)
      - [Объекты контекста](https://python-all.ru/3.0/library/decimal.html#context-objects)
      - [Сигналы](https://python-all.ru/3.0/library/decimal.html#signals)
      - [Примечания о числах с плавающей точкой](https://python-all.ru/3.0/library/decimal.html#floating-point-notes)

        - [Уменьшение ошибки округления за счёт повышенной точности](https://python-all.ru/3.0/library/decimal.html#mitigating-round-off-error-with-increased-precision)
        - [Особые значения](https://python-all.ru/3.0/library/decimal.html#special-values)
      - [Работа с потоками](https://python-all.ru/3.0/library/decimal.html#working-with-threads)
      - [Рецепты](https://python-all.ru/3.0/library/decimal.html#recipes)
      - [Часто задаваемые вопросы по Decimal](https://python-all.ru/3.0/library/decimal.html#id1)
    - [`fractions` – Рациональные числа](https://python-all.ru/3.0/library/fractions.html)
    - [`random` – Генерация псевдослучайных чисел](https://python-all.ru/3.0/library/random.html)
    - [`itertools` – Функции, создающие итераторы для эффективного циклического обхода](https://python-all.ru/3.0/library/itertools.html)

      - [Функции itertools](https://python-all.ru/3.0/library/itertools.html#itertool-functions)
      - [Примеры](https://python-all.ru/3.0/library/itertools.html#examples)
      - [Рецепты](https://python-all.ru/3.0/library/itertools.html#recipes)
    - [`functools` – Функции высшего порядка и операции над вызываемыми объектами](https://python-all.ru/3.0/library/functools.html)

      - [`partial` Объекты](https://python-all.ru/3.0/library/functools.html#id1)
    - [`operator` – Стандартные операторы в виде функций](https://python-all.ru/3.0/library/operator.html)

      - [Отображение операторов на функции](https://python-all.ru/3.0/library/operator.html#mapping-operators-to-functions)
  - [Доступ к файлам и каталогам](https://python-all.ru/3.0/library/filesys.html)

    - [`os.path` – Распространённые операции с путями](https://python-all.ru/3.0/library/os.path.html)
    - [`fileinput` – Итерация по строкам из нескольких входных потоков](https://python-all.ru/3.0/library/fileinput.html)
    - [`stat` – Интерпретация результатов `stat()`](https://python-all.ru/3.0/library/stat.html)
    - [`filecmp` – Сравнение файлов и каталогов](https://python-all.ru/3.0/library/filecmp.html)

      - [Класс `dircmp`](https://python-all.ru/3.0/library/filecmp.html#the-dircmp-class)
    - [`tempfile` – Создание временных файлов и каталогов](https://python-all.ru/3.0/library/tempfile.html)
    - [`glob` – Развёртывание шаблонов имён путей в стиле Unix](https://python-all.ru/3.0/library/glob.html)
    - [`fnmatch` – Сопоставление имён файлов с шаблонами в стиле Unix](https://python-all.ru/3.0/library/fnmatch.html)
    - [`linecache` – Произвольный доступ к строкам текста](https://python-all.ru/3.0/library/linecache.html)
    - [`shutil` – Высокоуровневые операции с файлами](https://python-all.ru/3.0/library/shutil.html)

      - [Пример](https://python-all.ru/3.0/library/shutil.html#example)
    - [`macpath` – Функции для работы с путями Mac OS 9](https://python-all.ru/3.0/library/macpath.html)
  - [Постоянное хранение данных](https://python-all.ru/3.0/library/persistence.html)

    - [`pickle` – Сериализация объектов Python](https://python-all.ru/3.0/library/pickle.html)

      - [Связь с другими модулями Python](https://python-all.ru/3.0/library/pickle.html#relationship-to-other-python-modules)
      - [Формат потока данных](https://python-all.ru/3.0/library/pickle.html#data-stream-format)
      - [Интерфейс модуля](https://python-all.ru/3.0/library/pickle.html#module-interface)
      - [Что можно сериализовать и десериализовать?](https://python-all.ru/3.0/library/pickle.html#what-can-be-pickled-and-unpickled)
      - [Сериализация экземпляров классов](https://python-all.ru/3.0/library/pickle.html#pickling-class-instances)

        - [Сохранение внешних объектов](https://python-all.ru/3.0/library/pickle.html#persistence-of-external-objects)
        - [Обработка объектов с состоянием](https://python-all.ru/3.0/library/pickle.html#handling-stateful-objects)
      - [Ограничение глобальных переменных](https://python-all.ru/3.0/library/pickle.html#restricting-globals)
      - [Пример](https://python-all.ru/3.0/library/pickle.html#example)
    - [`copyreg` – Регистрация функций поддержки `pickle`](https://python-all.ru/3.0/library/copyreg.html)
    - [`shelve` – Персистентность объектов Python](https://python-all.ru/3.0/library/shelve.html)

      - [Ограничения](https://python-all.ru/3.0/library/shelve.html#restrictions)
      - [Пример](https://python-all.ru/3.0/library/shelve.html#example)
    - [`marshal` – Внутренняя сериализация объектов Python](https://python-all.ru/3.0/library/marshal.html)
    - [`dbm` – Интерфейсы к «базам данных» Unix](https://python-all.ru/3.0/library/dbm.html)

      - [`dbm.gnu` – Переосмысление dbm от GNU](https://python-all.ru/3.0/library/dbm.html#module-dbm.gnu)
      - [`dbm.ndbm` – Интерфейс на основе ndbm](https://python-all.ru/3.0/library/dbm.html#module-dbm.ndbm)
      - [`dbm.dumb` – Переносимая реализация DBM](https://python-all.ru/3.0/library/dbm.html#module-dbm.dumb)
    - [`sqlite3` – Интерфейс DB-API 2.0 для баз данных SQLite](https://python-all.ru/3.0/library/sqlite3.html)

      - [Функции и константы модуля](https://python-all.ru/3.0/library/sqlite3.html#module-functions-and-constants)
      - [Объекты соединений](https://python-all.ru/3.0/library/sqlite3.html#connection-objects)
      - [Объекты Cursor](https://python-all.ru/3.0/library/sqlite3.html#cursor-objects)
      - [Объекты Row](https://python-all.ru/3.0/library/sqlite3.html#row-objects)
      - [Типы SQLite и Python](https://python-all.ru/3.0/library/sqlite3.html#sqlite-and-python-types)

        - [Введение](https://python-all.ru/3.0/library/sqlite3.html#introduction)
        - [Использование адаптеров для хранения дополнительных типов Python в базах данных SQLite](https://python-all.ru/3.0/library/sqlite3.html#using-adapters-to-store-additional-python-types-in-sqlite-databases)

          - [Адаптация объекта самостоятельно](https://python-all.ru/3.0/library/sqlite3.html#letting-your-object-adapt-itself)
          - [Регистрация вызываемого адаптера](https://python-all.ru/3.0/library/sqlite3.html#registering-an-adapter-callable)
        - [Преобразование значений SQLite в пользовательские типы Python](https://python-all.ru/3.0/library/sqlite3.html#converting-sqlite-values-to-custom-python-types)
        - [Адаптеры и преобразователи по умолчанию](https://python-all.ru/3.0/library/sqlite3.html#default-adapters-and-converters)
      - [Управление транзакциями](https://python-all.ru/3.0/library/sqlite3.html#controlling-transactions)
      - [Эффективное использование pysqlite](https://python-all.ru/3.0/library/sqlite3.html#using-pysqlite-efficiently)

        - [Использование сокращённых методов](https://python-all.ru/3.0/library/sqlite3.html#using-shortcut-methods)
        - [Доступ к столбцам по имени, а не по индексу](https://python-all.ru/3.0/library/sqlite3.html#accessing-columns-by-name-instead-of-by-index)
        - [Использование соединения в качестве контекстного менеджера](https://python-all.ru/3.0/library/sqlite3.html#using-the-connection-as-a-context-manager)
  - [Сжатие и архивирование данных](https://python-all.ru/3.0/library/archiving.html)

    - [`zlib` – Сжатие, совместимое с **gzip**](https://python-all.ru/3.0/library/zlib.html)
    - [`gzip` – Поддержка файлов **gzip**](https://python-all.ru/3.0/library/gzip.html)

      - [Примеры использования](https://python-all.ru/3.0/library/gzip.html#examples-of-usage)
    - [`bz2` – Сжатие, совместимое с **bzip2**](https://python-all.ru/3.0/library/bz2.html)

      - [Сжатие и распаковка файлов](https://python-all.ru/3.0/library/bz2.html#de-compression-of-files)
      - [Последовательное (де)сжатие](https://python-all.ru/3.0/library/bz2.html#sequential-de-compression)
      - [Однопроходное сжатие/распаковка](https://python-all.ru/3.0/library/bz2.html#one-shot-de-compression)
    - [`zipfile` – Работа с ZIP-архивами](https://python-all.ru/3.0/library/zipfile.html)

      - [Объекты ZipFile](https://python-all.ru/3.0/library/zipfile.html#id2)
      - [Объекты PyZipFile](https://python-all.ru/3.0/library/zipfile.html#id3)
      - [Объекты ZipInfo](https://python-all.ru/3.0/library/zipfile.html#id4)
    - [`tarfile` – Чтение и запись tar-архивов](https://python-all.ru/3.0/library/tarfile.html)

      - [Объекты TarFile](https://python-all.ru/3.0/library/tarfile.html#id1)
      - [Объекты TarInfo](https://python-all.ru/3.0/library/tarfile.html#id2)
      - [Примеры](https://python-all.ru/3.0/library/tarfile.html#examples)
      - [Поддерживаемые форматы tar](https://python-all.ru/3.0/library/tarfile.html#supported-tar-formats)
      - [Проблемы с Unicode](https://python-all.ru/3.0/library/tarfile.html#unicode-issues)
  - [Форматы файлов](https://python-all.ru/3.0/library/fileformats.html)

    - [`csv` – Чтение и запись CSV-файлов](https://python-all.ru/3.0/library/csv.html)

      - [Содержимое модуля](https://python-all.ru/3.0/library/csv.html#module-contents)
      - [Диалекты и параметры форматирования](https://python-all.ru/3.0/library/csv.html#dialects-and-formatting-parameters)
      - [Объекты чтения](https://python-all.ru/3.0/library/csv.html#reader-objects)
      - [Объекты записи](https://python-all.ru/3.0/library/csv.html#writer-objects)
      - [Примеры](https://python-all.ru/3.0/library/csv.html#examples)
    - [`configparser` – Парсер конфигурационных файлов](https://python-all.ru/3.0/library/configparser.html)

      - [Объекты RawConfigParser](https://python-all.ru/3.0/library/configparser.html#id1)
      - [Объекты ConfigParser](https://python-all.ru/3.0/library/configparser.html#id2)
      - [Объекты SafeConfigParser](https://python-all.ru/3.0/library/configparser.html#id3)
      - [Примеры](https://python-all.ru/3.0/library/configparser.html#examples)
    - [`netrc` – Обработка файлов netrc](https://python-all.ru/3.0/library/netrc.html)

      - [Объекты netrc](https://python-all.ru/3.0/library/netrc.html#id1)
    - [`xdrlib` – Кодирование и декодирование данных XDR](https://python-all.ru/3.0/library/xdrlib.html)

      - [Объекты упаковщика](https://python-all.ru/3.0/library/xdrlib.html#packer-objects)
      - [Объекты распаковщика](https://python-all.ru/3.0/library/xdrlib.html#unpacker-objects)
      - [Исключения](https://python-all.ru/3.0/library/xdrlib.html#exceptions)
    - [`plistlib` – Генерация и разбор файлов Mac OS X `.plist`](https://python-all.ru/3.0/library/plistlib.html)

      - [Примеры](https://python-all.ru/3.0/library/plistlib.html#examples)
  - [Криптографические службы](https://python-all.ru/3.0/library/crypto.html)

    - [`hashlib` – Безопасные хеши и дайджесты сообщений](https://python-all.ru/3.0/library/hashlib.html)
    - [`hmac` – Хеширование с ключом для аутентификации сообщений](https://python-all.ru/3.0/library/hmac.html)
  - [Универсальные службы операционной системы](https://python-all.ru/3.0/library/allos.html)

    - [`os` – Различные интерфейсы операционной системы](https://python-all.ru/3.0/library/os.html)

      - [Параметры процесса](https://python-all.ru/3.0/library/os.html#process-parameters)
      - [Создание файловых объектов](https://python-all.ru/3.0/library/os.html#file-object-creation)
      - [Операции с файловыми дескрипторами](https://python-all.ru/3.0/library/os.html#file-descriptor-operations)
      - [Файлы и каталоги](https://python-all.ru/3.0/library/os.html#files-and-directories)
      - [Управление процессами](https://python-all.ru/3.0/library/os.html#process-management)
      - [Различная системная информация](https://python-all.ru/3.0/library/os.html#miscellaneous-system-information)
      - [Различные функции](https://python-all.ru/3.0/library/os.html#miscellaneous-functions)
    - [`io` – Основные инструменты для работы с потоками](https://python-all.ru/3.0/library/io.html)

      - [Интерфейс модуля](https://python-all.ru/3.0/library/io.html#module-interface)
      - [Базовые классы ввода/вывода](https://python-all.ru/3.0/library/io.html#i-o-base-classes)
      - [Необработанный файловый ввод/вывод](https://python-all.ru/3.0/library/io.html#raw-file-i-o)
      - [Буферизированные потоки](https://python-all.ru/3.0/library/io.html#buffered-streams)
      - [Текстовый ввод/вывод](https://python-all.ru/3.0/library/io.html#text-i-o)
    - [`time` – Доступ и преобразования времени](https://python-all.ru/3.0/library/time.html)
    - [`optparse` – Более мощный парсер опций командной строки](https://python-all.ru/3.0/library/optparse.html)

      - [Фон](https://python-all.ru/3.0/library/optparse.html#background)

        - [Терминология](https://python-all.ru/3.0/library/optparse.html#terminology)
        - [Для чего нужны опции?](https://python-all.ru/3.0/library/optparse.html#what-are-options-for)
        - [Для чего нужны позиционные аргументы?](https://python-all.ru/3.0/library/optparse.html#what-are-positional-arguments-for)
      - [Учебное пособие](https://python-all.ru/3.0/library/optparse.html#tutorial)

        - [Понимание действий опций](https://python-all.ru/3.0/library/optparse.html#understanding-option-actions)
        - [Действие store](https://python-all.ru/3.0/library/optparse.html#the-store-action)
        - [Обработка булевых опций (флагов)](https://python-all.ru/3.0/library/optparse.html#handling-boolean-flag-options)
        - [Другие действия](https://python-all.ru/3.0/library/optparse.html#other-actions)
        - [Значения по умолчанию](https://python-all.ru/3.0/library/optparse.html#default-values)
        - [Генерация справки](https://python-all.ru/3.0/library/optparse.html#generating-help)
        - [Вывод строки версии](https://python-all.ru/3.0/library/optparse.html#printing-a-version-string)
        - [Как `optparse` обрабатывает ошибки](https://python-all.ru/3.0/library/optparse.html#how-optparse-handles-errors)
        - [Собираем всё вместе](https://python-all.ru/3.0/library/optparse.html#putting-it-all-together)
      - [Справочное руководство](https://python-all.ru/3.0/library/optparse.html#reference-guide)

        - [Создание парсера](https://python-all.ru/3.0/library/optparse.html#creating-the-parser)
        - [Наполнение парсера](https://python-all.ru/3.0/library/optparse.html#populating-the-parser)
        - [Определение параметров](https://python-all.ru/3.0/library/optparse.html#defining-options)
        - [Стандартные действия параметров](https://python-all.ru/3.0/library/optparse.html#standard-option-actions)
        - [Атрибуты параметров](https://python-all.ru/3.0/library/optparse.html#option-attributes)
        - [Стандартные типы параметров](https://python-all.ru/3.0/library/optparse.html#standard-option-types)
        - [Разбор аргументов](https://python-all.ru/3.0/library/optparse.html#parsing-arguments)
        - [Запросы и управление парсером параметров](https://python-all.ru/3.0/library/optparse.html#querying-and-manipulating-your-option-parser)
        - [Конфликты между параметрами](https://python-all.ru/3.0/library/optparse.html#conflicts-between-options)
        - [Очистка](https://python-all.ru/3.0/library/optparse.html#cleanup)
        - [Другие методы](https://python-all.ru/3.0/library/optparse.html#other-methods)
      - [Колбэки параметров](https://python-all.ru/3.0/library/optparse.html#option-callbacks)

        - [Определение параметра с колбэком](https://python-all.ru/3.0/library/optparse.html#defining-a-callback-option)
        - [Как вызываются колбэки](https://python-all.ru/3.0/library/optparse.html#how-callbacks-are-called)
        - [Возбуждение исключений в колбэке](https://python-all.ru/3.0/library/optparse.html#raising-errors-in-a-callback)
        - [Пример колбэка 1: простейший колбэк](https://python-all.ru/3.0/library/optparse.html#callback-example-1-trivial-callback)
        - [Пример колбэка 2: проверка порядка параметров](https://python-all.ru/3.0/library/optparse.html#callback-example-2-check-option-order)
        - [Пример колбэка 3: проверка порядка параметров (обобщённо)](https://python-all.ru/3.0/library/optparse.html#callback-example-3-check-option-order-generalized)
        - [Пример колбэка 4: проверка произвольного условия](https://python-all.ru/3.0/library/optparse.html#callback-example-4-check-arbitrary-condition)
        - [Пример колбэка 5: фиксированные аргументы](https://python-all.ru/3.0/library/optparse.html#callback-example-5-fixed-arguments)
        - [Пример колбэка 6: переменное число аргументов](https://python-all.ru/3.0/library/optparse.html#callback-example-6-variable-arguments)
      - [Расширение `optparse`](https://python-all.ru/3.0/library/optparse.html#extending-optparse)

        - [Добавление новых типов](https://python-all.ru/3.0/library/optparse.html#adding-new-types)
        - [Добавление новых действий](https://python-all.ru/3.0/library/optparse.html#adding-new-actions)
    - [`getopt` – Парсер опций командной строки](https://python-all.ru/3.0/library/getopt.html)
    - [`logging` – Средство логирования для Python](https://python-all.ru/3.0/library/logging.html)

      - [Руководство по логированию](https://python-all.ru/3.0/library/logging.html#logging-tutorial)

        - [Простые примеры](https://python-all.ru/3.0/library/logging.html#simple-examples)
        - [Логгеры](https://python-all.ru/3.0/library/logging.html#loggers)
        - [Обработчики](https://python-all.ru/3.0/library/logging.html#handlers)
        - [Форматировщики](https://python-all.ru/3.0/library/logging.html#formatters)
        - [Настройка логирования](https://python-all.ru/3.0/library/logging.html#configuring-logging)
        - [Настройка логирования для библиотеки](https://python-all.ru/3.0/library/logging.html#configuring-logging-for-a-library)
      - [Уровни журналирования](https://python-all.ru/3.0/library/logging.html#logging-levels)
      - [Полезные обработчики](https://python-all.ru/3.0/library/logging.html#module-logging.handlers)
      - [Функции уровня модуля](https://python-all.ru/3.0/library/logging.html#module-level-functions)
      - [Объекты Logger](https://python-all.ru/3.0/library/logging.html#logger-objects)
      - [Простой пример](https://python-all.ru/3.0/library/logging.html#basic-example)
      - [Логирование в несколько мест назначения](https://python-all.ru/3.0/library/logging.html#logging-to-multiple-destinations)
      - [Добавление контекстной информации в вывод логирования](https://python-all.ru/3.0/library/logging.html#adding-contextual-information-to-your-logging-output)
      - [Отправка и получение событий логирования по сети](https://python-all.ru/3.0/library/logging.html#sending-and-receiving-logging-events-across-a-network)
      - [Объекты-обработчики](https://python-all.ru/3.0/library/logging.html#handler-objects)

        - [StreamHandler](https://python-all.ru/3.0/library/logging.html#streamhandler)
        - [FileHandler](https://python-all.ru/3.0/library/logging.html#filehandler)
        - [NullHandler](https://python-all.ru/3.0/library/logging.html#nullhandler)
        - [WatchedFileHandler](https://python-all.ru/3.0/library/logging.html#watchedfilehandler)
        - [RotatingFileHandler](https://python-all.ru/3.0/library/logging.html#rotatingfilehandler)
        - [TimedRotatingFileHandler](https://python-all.ru/3.0/library/logging.html#timedrotatingfilehandler)
        - [Обработчик сокетов](https://python-all.ru/3.0/library/logging.html#sockethandler)
        - [Обработчик датаграмм](https://python-all.ru/3.0/library/logging.html#datagramhandler)
        - [Обработчик системного журнала](https://python-all.ru/3.0/library/logging.html#sysloghandler)
        - [Обработчик журнала событий NT](https://python-all.ru/3.0/library/logging.html#nteventloghandler)
        - [SMTP-обработчик](https://python-all.ru/3.0/library/logging.html#smtphandler)
        - [Обработчик памяти](https://python-all.ru/3.0/library/logging.html#memoryhandler)
        - [HTTP-обработчик](https://python-all.ru/3.0/library/logging.html#httphandler)
      - [Объекты-форматировщики](https://python-all.ru/3.0/library/logging.html#id1)
      - [Объекты-фильтры](https://python-all.ru/3.0/library/logging.html#filter-objects)
      - [Объекты LogRecord](https://python-all.ru/3.0/library/logging.html#logrecord-objects)
      - [Объекты LoggerAdapter](https://python-all.ru/3.0/library/logging.html#loggeradapter-objects)
      - [Потокобезопасность](https://python-all.ru/3.0/library/logging.html#thread-safety)
      - [Конфигурация](https://python-all.ru/3.0/library/logging.html#configuration)

        - [Функции конфигурации](https://python-all.ru/3.0/library/logging.html#configuration-functions)
        - [Формат файла конфигурации](https://python-all.ru/3.0/library/logging.html#configuration-file-format)
        - [Пример сервера конфигурации](https://python-all.ru/3.0/library/logging.html#configuration-server-example)
      - [Дополнительные примеры](https://python-all.ru/3.0/library/logging.html#more-examples)

        - [Несколько обработчиков и форматировщиков](https://python-all.ru/3.0/library/logging.html#multiple-handlers-and-formatters)
        - [Использование логирования в нескольких модулях](https://python-all.ru/3.0/library/logging.html#using-logging-in-multiple-modules)
    - [`getpass` – Переносимый ввод пароля](https://python-all.ru/3.0/library/getpass.html)
    - [`curses` – Управление терминалом для символьных дисплеев](https://python-all.ru/3.0/library/curses.html)

      - [Функции](https://python-all.ru/3.0/library/curses.html#functions)
      - [Объекты окон](https://python-all.ru/3.0/library/curses.html#window-objects)
      - [Константы](https://python-all.ru/3.0/library/curses.html#constants)
    - [`curses.textpad` – Виджет ввода текста для программ curses](https://python-all.ru/3.0/library/curses.html#module-curses.textpad)

      - [Объекты Textbox](https://python-all.ru/3.0/library/curses.html#textbox-objects)
    - [`curses.wrapper` – Обработчик терминала для программ curses](https://python-all.ru/3.0/library/curses.html#module-curses.wrapper)
    - [`curses.ascii` – Утилиты для символов ASCII](https://python-all.ru/3.0/library/curses.ascii.html)
    - [`curses.panel` – Расширение стека панелей для curses.](https://python-all.ru/3.0/library/curses.panel.html)

      - [Функции](https://python-all.ru/3.0/library/curses.panel.html#functions)
      - [Объекты панелей](https://python-all.ru/3.0/library/curses.panel.html#panel-objects)
    - [`platform` – Доступ к идентификационным данным базовой платформы.](https://python-all.ru/3.0/library/platform.html)

      - [Кроссплатформенные](https://python-all.ru/3.0/library/platform.html#cross-platform)
      - [Платформа Java](https://python-all.ru/3.0/library/platform.html#java-platform)
      - [Платформа Windows](https://python-all.ru/3.0/library/platform.html#windows-platform)

        - [Специфично для Win95/98](https://python-all.ru/3.0/library/platform.html#win95-98-specific)
      - [Платформа Mac OS](https://python-all.ru/3.0/library/platform.html#mac-os-platform)
      - [Платформы Unix](https://python-all.ru/3.0/library/platform.html#unix-platforms)
    - [`errno` – Стандартные системные символы errno](https://python-all.ru/3.0/library/errno.html)
    - [`ctypes` – Библиотека внешних функций для Python.](https://python-all.ru/3.0/library/ctypes.html)

      - [Руководство по ctypes](https://python-all.ru/3.0/library/ctypes.html#ctypes-tutorial)

        - [Загрузка библиотек динамической компоновки](https://python-all.ru/3.0/library/ctypes.html#loading-dynamic-link-libraries)
        - [Доступ к функциям из загруженных DLL](https://python-all.ru/3.0/library/ctypes.html#accessing-functions-from-loaded-dlls)
        - [Вызов функций](https://python-all.ru/3.0/library/ctypes.html#calling-functions)
        - [Базовые типы данных](https://python-all.ru/3.0/library/ctypes.html#fundamental-data-types)
        - [Вызов функций (продолжение)](https://python-all.ru/3.0/library/ctypes.html#calling-functions-continued)
        - [Вызов функций с собственными пользовательскими типами данных](https://python-all.ru/3.0/library/ctypes.html#calling-functions-with-your-own-custom-data-types)
        - [Указание требуемых типов аргументов (прототипы функций)](https://python-all.ru/3.0/library/ctypes.html#specifying-the-required-argument-types-function-prototypes)
        - [Типы возвращаемых значений](https://python-all.ru/3.0/library/ctypes.html#return-types)
        - [Передача указателей (или передача параметров по ссылке)](https://python-all.ru/3.0/library/ctypes.html#passing-pointers-or-passing-parameters-by-reference)
        - [Структуры и объединения](https://python-all.ru/3.0/library/ctypes.html#structures-and-unions)
        - [Выравнивание структур/объединений и порядок байтов](https://python-all.ru/3.0/library/ctypes.html#structure-union-alignment-and-byte-order)
        - [Битовые поля в структурах и объединениях](https://python-all.ru/3.0/library/ctypes.html#bit-fields-in-structures-and-unions)
        - [Массивы](https://python-all.ru/3.0/library/ctypes.html#arrays)
        - [Указатели](https://python-all.ru/3.0/library/ctypes.html#pointers)
        - [Преобразования типов](https://python-all.ru/3.0/library/ctypes.html#type-conversions)
        - [Неполные типы](https://python-all.ru/3.0/library/ctypes.html#incomplete-types)
        - [Функции обратного вызова](https://python-all.ru/3.0/library/ctypes.html#callback-functions)
        - [Доступ к значениям, экспортируемым из DLL](https://python-all.ru/3.0/library/ctypes.html#accessing-values-exported-from-dlls)
        - [Неожиданности](https://python-all.ru/3.0/library/ctypes.html#surprises)
        - [Типы данных переменного размера](https://python-all.ru/3.0/library/ctypes.html#variable-sized-data-types)
      - [Справочник по ctypes](https://python-all.ru/3.0/library/ctypes.html#ctypes-reference)

        - [Поиск общих библиотек](https://python-all.ru/3.0/library/ctypes.html#finding-shared-libraries)
        - [Загрузка общих библиотек](https://python-all.ru/3.0/library/ctypes.html#loading-shared-libraries)
        - [Внешние функции](https://python-all.ru/3.0/library/ctypes.html#foreign-functions)
        - [Прототипы функций](https://python-all.ru/3.0/library/ctypes.html#function-prototypes)
        - [Вспомогательные функции](https://python-all.ru/3.0/library/ctypes.html#utility-functions)
        - [Типы данных](https://python-all.ru/3.0/library/ctypes.html#data-types)
        - [Базовые типы данных](https://python-all.ru/3.0/library/ctypes.html#id1)
        - [Структурированные типы данных](https://python-all.ru/3.0/library/ctypes.html#structured-data-types)
        - [Массивы и указатели](https://python-all.ru/3.0/library/ctypes.html#arrays-and-pointers)
  - [Опциональные службы операционной системы](https://python-all.ru/3.0/library/someos.html)

    - [`select` – Ожидание завершения ввода-вывода](https://python-all.ru/3.0/library/select.html)

      - [Объекты опроса по фронту и уровню (epoll)](https://python-all.ru/3.0/library/select.html#edge-and-level-trigger-polling-epoll-objects)
      - [Объекты опроса](https://python-all.ru/3.0/library/select.html#polling-objects)
      - [Объекты kqueue](https://python-all.ru/3.0/library/select.html#id1)
      - [Объекты kevent](https://python-all.ru/3.0/library/select.html#id2)
    - [`threading` – Высокоуровневый интерфейс многопоточности](https://python-all.ru/3.0/library/threading.html)

      - [Объекты потоков](https://python-all.ru/3.0/library/threading.html#id1)
      - [Объекты блокировок](https://python-all.ru/3.0/library/threading.html#id2)
      - [Объекты RLock](https://python-all.ru/3.0/library/threading.html#id3)
      - [Объекты условий](https://python-all.ru/3.0/library/threading.html#id4)
      - [Объекты семафоров](https://python-all.ru/3.0/library/threading.html#id5)

        - [`Semaphore` Пример](https://python-all.ru/3.0/library/threading.html#semaphore-example)
      - [Объекты событий](https://python-all.ru/3.0/library/threading.html#id6)
      - [Объекты таймеров](https://python-all.ru/3.0/library/threading.html#id7)
      - [Использование блокировок, условий и семафоров в инструкции `with`](https://python-all.ru/3.0/library/threading.html#using-locks-conditions-and-semaphores-in-the-with-statement)
      - [Импорт в многопоточном коде](https://python-all.ru/3.0/library/threading.html#importing-in-threaded-code)
    - [`dummy_threading` – Прямая замена модуля `threading`](https://python-all.ru/3.0/library/dummy_threading.html)
    - [`_thread` – Низкоуровневый API многопоточности](https://python-all.ru/3.0/library/_thread.html)
    - [`_dummy_thread` – Прямая замена модуля `_thread`](https://python-all.ru/3.0/library/_dummy_thread.html)
    - [`multiprocessing` – Основанный на процессах интерфейс «многопоточности»](https://python-all.ru/3.0/library/multiprocessing.html)

      - [Введение](https://python-all.ru/3.0/library/multiprocessing.html#introduction)

        - [Класс `процесс`](https://python-all.ru/3.0/library/multiprocessing.html#the-process-class)
        - [Обмен объектами между процессами](https://python-all.ru/3.0/library/multiprocessing.html#exchanging-objects-between-processes)
        - [Синхронизация между процессами](https://python-all.ru/3.0/library/multiprocessing.html#synchronization-between-processes)
        - [Совместное использование состояния между процессами](https://python-all.ru/3.0/library/multiprocessing.html#sharing-state-between-processes)
        - [Использование пула рабочих процессов](https://python-all.ru/3.0/library/multiprocessing.html#using-a-pool-of-workers)
      - [Справочник](https://python-all.ru/3.0/library/multiprocessing.html#reference)

        - [`процесс` и исключения](https://python-all.ru/3.0/library/multiprocessing.html#process-and-exceptions)
        - [Каналы и очереди](https://python-all.ru/3.0/library/multiprocessing.html#pipes-and-queues)
        - [Разное](https://python-all.ru/3.0/library/multiprocessing.html#miscellaneous)
        - [Объекты соединений](https://python-all.ru/3.0/library/multiprocessing.html#connection-objects)
        - [Примитивы синхронизации](https://python-all.ru/3.0/library/multiprocessing.html#synchronization-primitives)
        - [Разделяемые объекты `ctypes`](https://python-all.ru/3.0/library/multiprocessing.html#shared-ctypes-objects)

          - [Модуль `multiprocessing.sharedctypes`](https://python-all.ru/3.0/library/multiprocessing.html#module-multiprocessing.sharedctypes)
        - [Менеджеры](https://python-all.ru/3.0/library/multiprocessing.html#module-multiprocessing.managers)

          - [Объекты Namespace](https://python-all.ru/3.0/library/multiprocessing.html#namespace-objects)
          - [Настраиваемые менеджеры](https://python-all.ru/3.0/library/multiprocessing.html#customized-managers)
          - [Использование удалённого менеджера](https://python-all.ru/3.0/library/multiprocessing.html#using-a-remote-manager)
        - [Объекты-прокси](https://python-all.ru/3.0/library/multiprocessing.html#proxy-objects)

          - [Очистка](https://python-all.ru/3.0/library/multiprocessing.html#cleanup)
        - [Пулы процессов](https://python-all.ru/3.0/library/multiprocessing.html#module-multiprocessing.pool)
        - [Слушатели и клиенты](https://python-all.ru/3.0/library/multiprocessing.html#module-multiprocessing.connection)

          - [Форматы адресов](https://python-all.ru/3.0/library/multiprocessing.html#address-formats)
        - [Ключи аутентификации](https://python-all.ru/3.0/library/multiprocessing.html#authentication-keys)
        - [Логирование](https://python-all.ru/3.0/library/multiprocessing.html#logging)
        - [Модуль `multiprocessing.dummy`](https://python-all.ru/3.0/library/multiprocessing.html#module-multiprocessing.dummy)
      - [Рекомендации по программированию](https://python-all.ru/3.0/library/multiprocessing.html#programming-guidelines)

        - [Все платформы](https://python-all.ru/3.0/library/multiprocessing.html#all-platforms)
        - [Windows](https://python-all.ru/3.0/library/multiprocessing.html#windows)
      - [Примеры](https://python-all.ru/3.0/library/multiprocessing.html#examples)
    - [`mmap` – Поддержка отображаемых в память файлов](https://python-all.ru/3.0/library/mmap.html)
    - [`readline` – Интерфейс GNU readline](https://python-all.ru/3.0/library/readline.html)

      - [Пример](https://python-all.ru/3.0/library/readline.html#example)
    - [`rlcompleter` – Функция дополнения для GNU readline](https://python-all.ru/3.0/library/rlcompleter.html)

      - [Объекты Completer](https://python-all.ru/3.0/library/rlcompleter.html#id1)
  - [Межпроцессное взаимодействие и сеть](https://python-all.ru/3.0/library/ipc.html)

    - [`подпроцесс` – Управление подпроцессами](https://python-all.ru/3.0/library/subprocess.html)

      - [Использование модуля подпроцесс](https://python-all.ru/3.0/library/subprocess.html#using-the-subprocess-module)

        - [Удобные функции](https://python-all.ru/3.0/library/subprocess.html#convenience-functions)
        - [Исключения](https://python-all.ru/3.0/library/subprocess.html#exceptions)
        - [Безопасность](https://python-all.ru/3.0/library/subprocess.html#security)
      - [Объекты Popen](https://python-all.ru/3.0/library/subprocess.html#popen-objects)
      - [Замена старых функций модулем подпроцесс](https://python-all.ru/3.0/library/subprocess.html#replacing-older-functions-with-the-subprocess-module)

        - [Замена обратных кавычек оболочки /bin/sh](https://python-all.ru/3.0/library/subprocess.html#replacing-bin-sh-shell-backquote)
        - [Замена конвейера оболочки](https://python-all.ru/3.0/library/subprocess.html#replacing-shell-pipeline)
        - [Замена os.system()](https://python-all.ru/3.0/library/subprocess.html#replacing-os-system)
        - [Замена семейства os.spawn](https://python-all.ru/3.0/library/subprocess.html#replacing-the-os-spawn-family)
        - [Замена os.popen](https://python-all.ru/3.0/library/subprocess.html#replacing-os-popen)
    - [`socket` – Низкоуровневый сетевой интерфейс](https://python-all.ru/3.0/library/socket.html)

      - [Объекты сокетов](https://python-all.ru/3.0/library/socket.html#id1)
      - [Пример](https://python-all.ru/3.0/library/socket.html#example)
    - [`ssl` – SSL-обёртка для объектов сокетов](https://python-all.ru/3.0/library/ssl.html)

      - [Функции, константы и исключения](https://python-all.ru/3.0/library/ssl.html#functions-constants-and-exceptions)
      - [Объекты SSLSocket](https://python-all.ru/3.0/library/ssl.html#sslsocket-objects)
      - [Сертификаты](https://python-all.ru/3.0/library/ssl.html#certificates)
      - [Примеры](https://python-all.ru/3.0/library/ssl.html#examples)

        - [Проверка поддержки SSL](https://python-all.ru/3.0/library/ssl.html#testing-for-ssl-support)
        - [Работа на стороне клиента](https://python-all.ru/3.0/library/ssl.html#client-side-operation)
        - [Работа на стороне сервера](https://python-all.ru/3.0/library/ssl.html#server-side-operation)
    - [`signal` – Установка обработчиков асинхронных событий](https://python-all.ru/3.0/library/signal.html)

      - [Пример](https://python-all.ru/3.0/library/signal.html#example)
    - [`asyncore` – Асинхронный обработчик сокетов](https://python-all.ru/3.0/library/asyncore.html)

      - [Пример asyncore: простой HTTP-клиент](https://python-all.ru/3.0/library/asyncore.html#asyncore-example-basic-http-client)
    - [`asynchat` – Асинхронный обработчик команд/ответов для сокетов](https://python-all.ru/3.0/library/asynchat.html)

      - [asynchat – Вспомогательные классы и функции](https://python-all.ru/3.0/library/asynchat.html#asynchat-auxiliary-classes-and-functions)
      - [Пример asynchat](https://python-all.ru/3.0/library/asynchat.html#id1)
  - [Обработка интернет-данных](https://python-all.ru/3.0/library/netdata.html)

    - [`email` – Пакет для работы с email и MIME](https://python-all.ru/3.0/library/email.html)

      - [`email`: Представление email-сообщения](https://python-all.ru/3.0/library/email.message.html)
      - [`email`: Разбор email-сообщений](https://python-all.ru/3.0/library/email.parser.html)

        - [API FeedParser](https://python-all.ru/3.0/library/email.parser.html#feedparser-api)
        - [API класса Parser](https://python-all.ru/3.0/library/email.parser.html#parser-class-api)
        - [Дополнительные примечания](https://python-all.ru/3.0/library/email.parser.html#additional-notes)
      - [`email`: Генерация MIME-документов](https://python-all.ru/3.0/library/email.generator.html)
      - [`email`: Создание email- и MIME-объектов с нуля](https://python-all.ru/3.0/library/email.mime.html)
      - [`email`: Интернационализированные заголовки](https://python-all.ru/3.0/library/email.header.html)
      - [`email`: Представление кодировок](https://python-all.ru/3.0/library/email.charset.html)
      - [`email`: Кодировщики](https://python-all.ru/3.0/library/email.encoders.html)
      - [`email`: Классы исключений и дефектов](https://python-all.ru/3.0/library/email.errors.html)
      - [`email`: Прочие утилиты](https://python-all.ru/3.0/library/email.util.html)
      - [`email`: Итераторы](https://python-all.ru/3.0/library/email.iterators.html)
      - [`email`: Примеры](https://python-all.ru/3.0/library/email-examples.html)
      - [История пакета](https://python-all.ru/3.0/library/email.html#package-history)
      - [Отличия от `mimelib`](https://python-all.ru/3.0/library/email.html#differences-from-mimelib)
    - [`json` – кодировщик и декодировщик JSON](https://python-all.ru/3.0/library/json.html)

      - [Основное использование](https://python-all.ru/3.0/library/json.html#basic-usage)
      - [Кодировщики и декодировщики](https://python-all.ru/3.0/library/json.html#encoders-and-decoders)
    - [`mailcap` – работа с файлами mailcap](https://python-all.ru/3.0/library/mailcap.html)
    - [`mailbox` – управление почтовыми ящиками в различных форматах](https://python-all.ru/3.0/library/mailbox.html)

      - [`Mailbox` объекты](https://python-all.ru/3.0/library/mailbox.html#id1)

        - [`Maildir`](https://python-all.ru/3.0/library/mailbox.html#maildir)
        - [`mbox`](https://python-all.ru/3.0/library/mailbox.html#mbox)
        - [`MH`](https://python-all.ru/3.0/library/mailbox.html#mh)
        - [`Babyl`](https://python-all.ru/3.0/library/mailbox.html#babyl)
        - [`MMDF`](https://python-all.ru/3.0/library/mailbox.html#mmdf)
      - [`Message` объекты](https://python-all.ru/3.0/library/mailbox.html#message-objects)

        - [`MaildirMessage`](https://python-all.ru/3.0/library/mailbox.html#maildirmessage)
        - [`mboxMessage`](https://python-all.ru/3.0/library/mailbox.html#mboxmessage)
        - [`MHMessage`](https://python-all.ru/3.0/library/mailbox.html#mhmessage)
        - [`BabylMessage`](https://python-all.ru/3.0/library/mailbox.html#babylmessage)
        - [`MMDFMessage`](https://python-all.ru/3.0/library/mailbox.html#mmdfmessage)
      - [Исключения](https://python-all.ru/3.0/library/mailbox.html#exceptions)
      - [Примеры](https://python-all.ru/3.0/library/mailbox.html#examples)
    - [`mimetypes` – сопоставление имён файлов с MIME-типами](https://python-all.ru/3.0/library/mimetypes.html)

      - [Объекты MimeTypes](https://python-all.ru/3.0/library/mimetypes.html#id1)
    - [`base64` – RFC 3548: кодировки Base16, Base32, Base64](https://python-all.ru/3.0/library/base64.html)
    - [`binhex` – кодирование и декодирование файлов binhex4](https://python-all.ru/3.0/library/binhex.html)

      - [Примечания](https://python-all.ru/3.0/library/binhex.html#notes)
    - [`binascii` – преобразование между двоичным и ASCII](https://python-all.ru/3.0/library/binascii.html)
    - [`quopri` – кодирование и декодирование данных в формате MIME quoted-printable](https://python-all.ru/3.0/library/quopri.html)
    - [`uu` – кодирование и декодирование uuencode-файлов](https://python-all.ru/3.0/library/uu.html)
  - [Инструменты обработки структурированной разметки](https://python-all.ru/3.0/library/markup.html)

    - [`html.parser` – простой парсер HTML и XHTML](https://python-all.ru/3.0/library/html.parser.html)

      - [Пример приложения парсера HTML](https://python-all.ru/3.0/library/html.parser.html#example-html-parser-application)
    - [`html.entities` – определения общих HTML-сущностей](https://python-all.ru/3.0/library/html.entities.html)
    - [`xml.parsers.expat` – быстрый разбор XML с помощью Expat](https://python-all.ru/3.0/library/pyexpat.html)

      - [Объекты XMLParser](https://python-all.ru/3.0/library/pyexpat.html#id2)
      - [Исключения ExpatError](https://python-all.ru/3.0/library/pyexpat.html#expaterror-exceptions)
      - [Пример](https://python-all.ru/3.0/library/pyexpat.html#example)
      - [Описания моделей содержимого](https://python-all.ru/3.0/library/pyexpat.html#content-model-descriptions)
      - [Константы ошибок Expat](https://python-all.ru/3.0/library/pyexpat.html#expat-error-constants)
    - [`xml.dom` – API объектной модели документа](https://python-all.ru/3.0/library/xml.dom.html)

      - [Содержимое модуля](https://python-all.ru/3.0/library/xml.dom.html#module-contents)
      - [Объекты в DOM](https://python-all.ru/3.0/library/xml.dom.html#objects-in-the-dom)

        - [Объекты DOMImplementation](https://python-all.ru/3.0/library/xml.dom.html#domimplementation-objects)
        - [Объекты Node](https://python-all.ru/3.0/library/xml.dom.html#node-objects)
        - [Объекты NodeList](https://python-all.ru/3.0/library/xml.dom.html#nodelist-objects)
        - [Объекты DocumentType](https://python-all.ru/3.0/library/xml.dom.html#documenttype-objects)
        - [Объекты Document](https://python-all.ru/3.0/library/xml.dom.html#document-objects)
        - [Объекты Element](https://python-all.ru/3.0/library/xml.dom.html#element-objects)
        - [Объекты Attr](https://python-all.ru/3.0/library/xml.dom.html#attr-objects)
        - [Объекты NamedNodeMap](https://python-all.ru/3.0/library/xml.dom.html#namednodemap-objects)
        - [Объекты Comment](https://python-all.ru/3.0/library/xml.dom.html#comment-objects)
        - [Объекты Text и CDATASection](https://python-all.ru/3.0/library/xml.dom.html#text-and-cdatasection-objects)
        - [Объекты ProcessingInstruction](https://python-all.ru/3.0/library/xml.dom.html#processinginstruction-objects)
        - [Исключения](https://python-all.ru/3.0/library/xml.dom.html#exceptions)
      - [Соответствие стандарту](https://python-all.ru/3.0/library/xml.dom.html#conformance)

        - [Отображение типов](https://python-all.ru/3.0/library/xml.dom.html#type-mapping)
        - [Методы доступа](https://python-all.ru/3.0/library/xml.dom.html#accessor-methods)
    - [`xml.dom.minidom` – облегчённая реализация DOM](https://python-all.ru/3.0/library/xml.dom.minidom.html)

      - [Объекты DOM](https://python-all.ru/3.0/library/xml.dom.minidom.html#dom-objects)
      - [Пример DOM](https://python-all.ru/3.0/library/xml.dom.minidom.html#id2)
      - [minidom и стандарт DOM](https://python-all.ru/3.0/library/xml.dom.minidom.html#minidom-and-the-dom-standard)
    - [`xml.dom.pulldom` – поддержка построения частичных DOM-деревьев](https://python-all.ru/3.0/library/xml.dom.pulldom.html)

      - [Объекты DOMEventStream](https://python-all.ru/3.0/library/xml.dom.pulldom.html#id1)
    - [`xml.sax` – Поддержка парсеров SAX2](https://python-all.ru/3.0/library/xml.sax.html)

      - [Объекты SAXException](https://python-all.ru/3.0/library/xml.sax.html#saxexception-objects)
    - [`xml.sax.handler` – Базовые классы для обработчиков SAX](https://python-all.ru/3.0/library/xml.sax.handler.html)

      - [Объекты ContentHandler](https://python-all.ru/3.0/library/xml.sax.handler.html#contenthandler-objects)
      - [Объекты DTDHandler](https://python-all.ru/3.0/library/xml.sax.handler.html#dtdhandler-objects)
      - [Объекты EntityResolver](https://python-all.ru/3.0/library/xml.sax.handler.html#entityresolver-objects)
      - [Объекты ErrorHandler](https://python-all.ru/3.0/library/xml.sax.handler.html#errorhandler-objects)
    - [`xml.sax.saxutils` – Утилиты SAX](https://python-all.ru/3.0/library/xml.sax.utils.html)
    - [`xml.sax.xmlreader` – Интерфейс для парсеров XML](https://python-all.ru/3.0/library/xml.sax.reader.html)

      - [Объекты XMLReader](https://python-all.ru/3.0/library/xml.sax.reader.html#id1)
      - [Объекты IncrementalParser](https://python-all.ru/3.0/library/xml.sax.reader.html#incrementalparser-objects)
      - [Объекты Locator](https://python-all.ru/3.0/library/xml.sax.reader.html#id2)
      - [Объекты InputSource](https://python-all.ru/3.0/library/xml.sax.reader.html#inputsource-objects)
      - [Интерфейс `Attributes`](https://python-all.ru/3.0/library/xml.sax.reader.html#the-attributes-interface)
      - [Интерфейс `AttributesNS`](https://python-all.ru/3.0/library/xml.sax.reader.html#the-attributesns-interface)
    - [`xml.etree.ElementTree` – XML API ElementTree](https://python-all.ru/3.0/library/xml.etree.elementtree.html)

      - [Функции](https://python-all.ru/3.0/library/xml.etree.elementtree.html#functions)
      - [Интерфейс Element](https://python-all.ru/3.0/library/xml.etree.elementtree.html#the-element-interface)
      - [Объекты ElementTree](https://python-all.ru/3.0/library/xml.etree.elementtree.html#elementtree-objects)
      - [Объекты QName](https://python-all.ru/3.0/library/xml.etree.elementtree.html#qname-objects)
      - [Объекты TreeBuilder](https://python-all.ru/3.0/library/xml.etree.elementtree.html#treebuilder-objects)
      - [Объекты XMLTreeBuilder](https://python-all.ru/3.0/library/xml.etree.elementtree.html#xmltreebuilder-objects)
  - [Интернет-протоколы и поддержка](https://python-all.ru/3.0/library/internet.html)

    - [`webbrowser` – Удобный контроллер веб-браузера](https://python-all.ru/3.0/library/webbrowser.html)

      - [Объекты управления браузером](https://python-all.ru/3.0/library/webbrowser.html#browser-controller-objects)
    - [`cgi` – Поддержка Common Gateway Interface.](https://python-all.ru/3.0/library/cgi.html)

      - [Введение](https://python-all.ru/3.0/library/cgi.html#introduction)
      - [Использование модуля cgi](https://python-all.ru/3.0/library/cgi.html#id1)
      - [Интерфейс высокого уровня](https://python-all.ru/3.0/library/cgi.html#higher-level-interface)
      - [Функции](https://python-all.ru/3.0/library/cgi.html#functions)
      - [Вопросы безопасности](https://python-all.ru/3.0/library/cgi.html#caring-about-security)
      - [Установка CGI-скрипта в системе Unix](https://python-all.ru/3.0/library/cgi.html#installing-your-cgi-script-on-a-unix-system)
      - [Тестирование CGI-скрипта](https://python-all.ru/3.0/library/cgi.html#testing-your-cgi-script)
      - [Отладка CGI-скриптов](https://python-all.ru/3.0/library/cgi.html#debugging-cgi-scripts)
      - [Типичные проблемы и решения](https://python-all.ru/3.0/library/cgi.html#common-problems-and-solutions)
    - [`cgitb` – Менеджер трассировки для CGI-скриптов](https://python-all.ru/3.0/library/cgitb.html)
    - [`wsgiref` – Утилиты WSGI и эталонная реализация](https://python-all.ru/3.0/library/wsgiref.html)

      - [`wsgiref.util` – Утилиты окружения WSGI](https://python-all.ru/3.0/library/wsgiref.html#module-wsgiref.util)
      - [`wsgiref.headers` – Инструменты для заголовков ответов WSGI](https://python-all.ru/3.0/library/wsgiref.html#module-wsgiref.headers)
      - [`wsgiref.simple_server` – Простой WSGI HTTP-сервер](https://python-all.ru/3.0/library/wsgiref.html#module-wsgiref.simple_server)
      - [`wsgiref.validate` – Проверка соответствия WSGI](https://python-all.ru/3.0/library/wsgiref.html#module-wsgiref.validate)
      - [`wsgiref.handlers` – Базовые классы сервера/шлюза](https://python-all.ru/3.0/library/wsgiref.html#module-wsgiref.handlers)
      - [Примеры](https://python-all.ru/3.0/library/wsgiref.html#examples)
    - [`urllib.request` – Расширяемая библиотека для открытия URL](https://python-all.ru/3.0/library/urllib.request.html)

      - [Объекты Request](https://python-all.ru/3.0/library/urllib.request.html#id1)
      - [Объекты OpenerDirector](https://python-all.ru/3.0/library/urllib.request.html#openerdirector-objects)
      - [Объекты BaseHandler](https://python-all.ru/3.0/library/urllib.request.html#basehandler-objects)
      - [Объекты HTTPRedirectHandler](https://python-all.ru/3.0/library/urllib.request.html#httpredirecthandler-objects)
      - [Объекты HTTPCookieProcessor](https://python-all.ru/3.0/library/urllib.request.html#httpcookieprocessor-objects)
      - [Объекты ProxyHandler](https://python-all.ru/3.0/library/urllib.request.html#proxyhandler-objects)
      - [Объекты HTTPPasswordMgr](https://python-all.ru/3.0/library/urllib.request.html#httppasswordmgr-objects)
      - [Объекты AbstractBasicAuthHandler](https://python-all.ru/3.0/library/urllib.request.html#abstractbasicauthhandler-objects)
      - [Объекты HTTPBasicAuthHandler](https://python-all.ru/3.0/library/urllib.request.html#httpbasicauthhandler-objects)
      - [Объекты ProxyBasicAuthHandler](https://python-all.ru/3.0/library/urllib.request.html#proxybasicauthhandler-objects)
      - [Объекты AbstractDigestAuthHandler](https://python-all.ru/3.0/library/urllib.request.html#abstractdigestauthhandler-objects)
      - [Объекты HTTPDigestAuthHandler](https://python-all.ru/3.0/library/urllib.request.html#httpdigestauthhandler-objects)
      - [Объекты ProxyDigestAuthHandler](https://python-all.ru/3.0/library/urllib.request.html#proxydigestauthhandler-objects)
      - [Объекты HTTPHandler](https://python-all.ru/3.0/library/urllib.request.html#httphandler-objects)
      - [Объекты HTTPSHandler](https://python-all.ru/3.0/library/urllib.request.html#httpshandler-objects)
      - [Объекты FileHandler](https://python-all.ru/3.0/library/urllib.request.html#filehandler-objects)
      - [Объекты FTPHandler](https://python-all.ru/3.0/library/urllib.request.html#ftphandler-objects)
      - [Объекты CacheFTPHandler](https://python-all.ru/3.0/library/urllib.request.html#cacheftphandler-objects)
      - [Объекты UnknownHandler](https://python-all.ru/3.0/library/urllib.request.html#unknownhandler-objects)
      - [Объекты HTTPErrorProcessor](https://python-all.ru/3.0/library/urllib.request.html#httperrorprocessor-objects)
      - [Примеры](https://python-all.ru/3.0/library/urllib.request.html#examples)
      - [`urllib.request` Ограничения](https://python-all.ru/3.0/library/urllib.request.html#urllib-request-restrictions)
    - [`urllib.response` – Классы ответов, используемые urllib.](https://python-all.ru/3.0/library/urllib.request.html#module-urllib.response)
    - [`urllib.parse` – Разбор URL на составные части](https://python-all.ru/3.0/library/urllib.parse.html)

      - [Результаты `urlparse()` и `urlsplit()`](https://python-all.ru/3.0/library/urllib.parse.html#results-of-urlparse-and-urlsplit)
    - [`urllib.error` – Классы исключений, вызываемые urllib.request](https://python-all.ru/3.0/library/urllib.error.html)
    - [`urllib.robotparser` – Парсер для robots.txt](https://python-all.ru/3.0/library/urllib.robotparser.html)
    - [`http.client` – Клиент протокола HTTP](https://python-all.ru/3.0/library/http.client.html)

      - [Объекты HTTPConnection](https://python-all.ru/3.0/library/http.client.html#id1)
      - [Объекты HTTPResponse](https://python-all.ru/3.0/library/http.client.html#id2)
      - [Примеры](https://python-all.ru/3.0/library/http.client.html#examples)
    - [`ftplib` – Клиент протокола FTP](https://python-all.ru/3.0/library/ftplib.html)

      - [Объекты FTP](https://python-all.ru/3.0/library/ftplib.html#id1)
    - [`poplib` – Клиент протокола POP3](https://python-all.ru/3.0/library/poplib.html)

      - [Объекты POP3](https://python-all.ru/3.0/library/poplib.html#id1)
      - [Пример POP3](https://python-all.ru/3.0/library/poplib.html#id2)
    - [`imaplib` – Клиент протокола IMAP4](https://python-all.ru/3.0/library/imaplib.html)

      - [Объекты IMAP4](https://python-all.ru/3.0/library/imaplib.html#id1)
      - [Пример IMAP4](https://python-all.ru/3.0/library/imaplib.html#id2)
    - [`nntplib` – Клиент протокола NNTP](https://python-all.ru/3.0/library/nntplib.html)

      - [Объекты NNTP](https://python-all.ru/3.0/library/nntplib.html#id1)
    - [`smtplib` – Клиент протокола SMTP](https://python-all.ru/3.0/library/smtplib.html)

      - [Объекты SMTP](https://python-all.ru/3.0/library/smtplib.html#id1)
      - [Пример SMTP](https://python-all.ru/3.0/library/smtplib.html#id2)
    - [`smtpd` – SMTP-сервер](https://python-all.ru/3.0/library/smtpd.html)

      - [Объекты SMTPServer](https://python-all.ru/3.0/library/smtpd.html#smtpserver-objects)
      - [Объекты DebuggingServer](https://python-all.ru/3.0/library/smtpd.html#debuggingserver-objects)
      - [Объекты PureProxy](https://python-all.ru/3.0/library/smtpd.html#pureproxy-objects)
      - [Объекты MailmanProxy](https://python-all.ru/3.0/library/smtpd.html#mailmanproxy-objects)
    - [`telnetlib` – Telnet-клиент](https://python-all.ru/3.0/library/telnetlib.html)

      - [Объекты Telnet](https://python-all.ru/3.0/library/telnetlib.html#id1)
      - [Пример Telnet](https://python-all.ru/3.0/library/telnetlib.html#id2)
    - [`uuid` – объекты UUID в соответствии с RFC 4122](https://python-all.ru/3.0/library/uuid.html)

      - [Пример](https://python-all.ru/3.0/library/uuid.html#example)
    - [`socketserver` – фреймворк для сетевых серверов](https://python-all.ru/3.0/library/socketserver.html)

      - [Замечания по созданию сервера](https://python-all.ru/3.0/library/socketserver.html#server-creation-notes)
      - [Объекты сервера](https://python-all.ru/3.0/library/socketserver.html#server-objects)
      - [Объекты RequestHandler](https://python-all.ru/3.0/library/socketserver.html#requesthandler-objects)
      - [Примеры](https://python-all.ru/3.0/library/socketserver.html#examples)

        - [`socketserver.TCPServer` Пример](https://python-all.ru/3.0/library/socketserver.html#socketserver-tcpserver-example)
        - [`socketserver.UDPServer` Пример](https://python-all.ru/3.0/library/socketserver.html#socketserver-udpserver-example)
        - [Асинхронные примеси](https://python-all.ru/3.0/library/socketserver.html#asynchronous-mixins)
    - [`http.server` – HTTP-серверы](https://python-all.ru/3.0/library/http.server.html)
    - [`http.cookies` – управление состоянием HTTP](https://python-all.ru/3.0/library/http.cookies.html)

      - [Объекты Cookie](https://python-all.ru/3.0/library/http.cookies.html#id1)
      - [Объекты Morsel](https://python-all.ru/3.0/library/http.cookies.html#id2)
      - [Пример](https://python-all.ru/3.0/library/http.cookies.html#example)
    - [`http.cookiejar` – обработка куки для HTTP-клиентов](https://python-all.ru/3.0/library/http.cookiejar.html)

      - [Объекты CookieJar и FileCookieJar](https://python-all.ru/3.0/library/http.cookiejar.html#cookiejar-and-filecookiejar-objects)
      - [Подклассы FileCookieJar и взаимодействие с веб-браузерами](https://python-all.ru/3.0/library/http.cookiejar.html#filecookiejar-subclasses-and-co-operation-with-web-browsers)
      - [Объекты CookiePolicy](https://python-all.ru/3.0/library/http.cookiejar.html#cookiepolicy-objects)
      - [Объекты DefaultCookiePolicy](https://python-all.ru/3.0/library/http.cookiejar.html#defaultcookiepolicy-objects)
      - [Объекты Cookie](https://python-all.ru/3.0/library/http.cookiejar.html#cookie-objects)
      - [Примеры](https://python-all.ru/3.0/library/http.cookiejar.html#examples)
    - [`xmlrpc.client` – доступ к XML-RPC-клиенту](https://python-all.ru/3.0/library/xmlrpc.client.html)

      - [Объекты ServerProxy](https://python-all.ru/3.0/library/xmlrpc.client.html#id1)
      - [Объекты datetime](https://python-all.ru/3.0/library/xmlrpc.client.html#id2)
      - [Объекты Binary](https://python-all.ru/3.0/library/xmlrpc.client.html#id3)
      - [Объекты Fault](https://python-all.ru/3.0/library/xmlrpc.client.html#id4)
      - [Объекты ProtocolError](https://python-all.ru/3.0/library/xmlrpc.client.html#protocolerror-objects)
      - [Объекты MultiCall](https://python-all.ru/3.0/library/xmlrpc.client.html#multicall-objects)
      - [Удобные функции](https://python-all.ru/3.0/library/xmlrpc.client.html#convenience-functions)
      - [Пример использования клиента](https://python-all.ru/3.0/library/xmlrpc.client.html#example-of-client-usage)
      - [Пример использования клиента и сервера](https://python-all.ru/3.0/library/xmlrpc.client.html#example-of-client-and-server-usage)
    - [`xmlrpc.server` – базовые XML-RPC-серверы](https://python-all.ru/3.0/library/xmlrpc.server.html)

      - [Объекты SimpleXMLRPCServer](https://python-all.ru/3.0/library/xmlrpc.server.html#simplexmlrpcserver-objects)

        - [Пример SimpleXMLRPCServer](https://python-all.ru/3.0/library/xmlrpc.server.html#id1)
      - [CGIXMLRPCRequestHandler](https://python-all.ru/3.0/library/xmlrpc.server.html#cgixmlrpcrequesthandler)
      - [Документирование сервера XML-RPC](https://python-all.ru/3.0/library/xmlrpc.server.html#documenting-xmlrpc-server)
      - [Объекты DocXMLRPCServer](https://python-all.ru/3.0/library/xmlrpc.server.html#docxmlrpcserver-objects)
      - [DocCGIXMLRPCRequestHandler](https://python-all.ru/3.0/library/xmlrpc.server.html#doccgixmlrpcrequesthandler)
  - [Мультимедийные службы](https://python-all.ru/3.0/library/mm.html)

    - [`audioop` – манипулирование сырыми аудиоданными](https://python-all.ru/3.0/library/audioop.html)
    - [`aifc` – чтение и запись файлов AIFF и AIFC](https://python-all.ru/3.0/library/aifc.html)
    - [`sunau` – чтение и запись файлов Sun AU](https://python-all.ru/3.0/library/sunau.html)

      - [Объекты AU\_read](https://python-all.ru/3.0/library/sunau.html#id1)
      - [Объекты AU\_write](https://python-all.ru/3.0/library/sunau.html#id2)
    - [`wave` – чтение и запись WAV-файлов](https://python-all.ru/3.0/library/wave.html)

      - [Объекты Wave\_read](https://python-all.ru/3.0/library/wave.html#id1)
      - [Объекты Wave\_write](https://python-all.ru/3.0/library/wave.html#id2)
    - [`chunk` – чтение фрагментированных данных IFF](https://python-all.ru/3.0/library/chunk.html)
    - [`colorsys` – преобразования между цветовыми системами](https://python-all.ru/3.0/library/colorsys.html)
    - [`imghdr` – определение типа изображения](https://python-all.ru/3.0/library/imghdr.html)
    - [`sndhdr` – определение типа звукового файла](https://python-all.ru/3.0/library/sndhdr.html)
    - [`ossaudiodev` – доступ к аудиоустройствам, совместимым с OSS](https://python-all.ru/3.0/library/ossaudiodev.html)

      - [Объекты аудиоустройства](https://python-all.ru/3.0/library/ossaudiodev.html#audio-device-objects)
      - [Объекты микшера](https://python-all.ru/3.0/library/ossaudiodev.html#id1)
  - [Интернационализация](https://python-all.ru/3.0/library/i18n.html)

    - [`gettext` – службы многоязычной интернационализации](https://python-all.ru/3.0/library/gettext.html)

      - [API GNU **gettext**](https://python-all.ru/3.0/library/gettext.html#gnu-gettext-api)
      - [API на основе классов](https://python-all.ru/3.0/library/gettext.html#class-based-api)

        - [Класс `NullTranslations`](https://python-all.ru/3.0/library/gettext.html#the-nulltranslations-class)
        - [Класс `GNUTranslations`](https://python-all.ru/3.0/library/gettext.html#the-gnutranslations-class)
        - [Поддержка каталогов сообщений Solaris](https://python-all.ru/3.0/library/gettext.html#solaris-message-catalog-support)
        - [Конструктор Catalog](https://python-all.ru/3.0/library/gettext.html#the-catalog-constructor)
      - [Интернационализация программ и модулей](https://python-all.ru/3.0/library/gettext.html#internationalizing-your-programs-and-modules)

        - [Локализация модуля](https://python-all.ru/3.0/library/gettext.html#localizing-your-module)
        - [Локализация приложения](https://python-all.ru/3.0/library/gettext.html#localizing-your-application)
        - [Смена языка на лету](https://python-all.ru/3.0/library/gettext.html#changing-languages-on-the-fly)
        - [Отложенные переводы](https://python-all.ru/3.0/library/gettext.html#deferred-translations)
      - [Благодарности](https://python-all.ru/3.0/library/gettext.html#acknowledgements)
    - [`locale` – службы интернационализации](https://python-all.ru/3.0/library/locale.html)

      - [Предыстория, подробности, советы, подсказки и предостережения](https://python-all.ru/3.0/library/locale.html#background-details-hints-tips-and-caveats)
      - [Для разработчиков расширений и программ, встраивающих Python](https://python-all.ru/3.0/library/locale.html#for-extension-writers-and-programs-that-embed-python)
      - [Доступ к каталогам сообщений](https://python-all.ru/3.0/library/locale.html#access-to-message-catalogs)
  - [Программные фреймворки](https://python-all.ru/3.0/library/frameworks.html)

    - [`cmd` – поддержка командных интерпретаторов, ориентированных на строки](https://python-all.ru/3.0/library/cmd.html)

      - [Объекты Cmd](https://python-all.ru/3.0/library/cmd.html#id1)
    - [`shlex` – простой лексический анализ](https://python-all.ru/3.0/library/shlex.html)

      - [Объекты shlex](https://python-all.ru/3.0/library/shlex.html#id1)
      - [Правила разбора](https://python-all.ru/3.0/library/shlex.html#parsing-rules)
  - [Графические пользовательские интерфейсы с Tk](https://python-all.ru/3.0/library/tk.html)

    - [`tkinter` – интерфейс Python для Tcl/Tk](https://python-all.ru/3.0/library/tkinter.html)

      - [Модули Tkinter](https://python-all.ru/3.0/library/tkinter.html#tkinter-modules)
      - [Основы Tkinter](https://python-all.ru/3.0/library/tkinter.html#tkinter-life-preserver)

        - [Как использовать этот раздел](https://python-all.ru/3.0/library/tkinter.html#how-to-use-this-section)
        - [Простая программа Hello World](https://python-all.ru/3.0/library/tkinter.html#a-simple-hello-world-program)
      - [Беглый (очень) взгляд на Tcl/Tk](https://python-all.ru/3.0/library/tkinter.html#a-very-quick-look-at-tcl-tk)
      - [Сопоставление базовых Tk с Tkinter](https://python-all.ru/3.0/library/tkinter.html#mapping-basic-tk-into-tkinter)
      - [Как связаны Tk и Tkinter](https://python-all.ru/3.0/library/tkinter.html#how-tk-and-tkinter-are-related)
      - [Удобный справочник](https://python-all.ru/3.0/library/tkinter.html#handy-reference)

        - [Настройка параметров](https://python-all.ru/3.0/library/tkinter.html#setting-options)
        - [Packer](https://python-all.ru/3.0/library/tkinter.html#the-packer)
        - [Параметры Packer](https://python-all.ru/3.0/library/tkinter.html#packer-options)
        - [Связывание переменных виджетов](https://python-all.ru/3.0/library/tkinter.html#coupling-widget-variables)
        - [Менеджер окон](https://python-all.ru/3.0/library/tkinter.html#the-window-manager)
        - [Типы данных опций Tk](https://python-all.ru/3.0/library/tkinter.html#tk-option-data-types)
        - [Привязки и события](https://python-all.ru/3.0/library/tkinter.html#bindings-and-events)
        - [Параметр index](https://python-all.ru/3.0/library/tkinter.html#the-index-parameter)
        - [Изображения](https://python-all.ru/3.0/library/tkinter.html#images)
    - [`tkinter.tix` – расширенные виджеты для Tk](https://python-all.ru/3.0/library/tkinter.tix.html)

      - [Использование Tix](https://python-all.ru/3.0/library/tkinter.tix.html#using-tix)
      - [Виджеты Tix](https://python-all.ru/3.0/library/tkinter.tix.html#tix-widgets)

        - [Базовые виджеты](https://python-all.ru/3.0/library/tkinter.tix.html#basic-widgets)
        - [Выбор файлов](https://python-all.ru/3.0/library/tkinter.tix.html#file-selectors)
        - [Иерархический ListBox](https://python-all.ru/3.0/library/tkinter.tix.html#hierarchical-listbox)
        - [Табличный ListBox](https://python-all.ru/3.0/library/tkinter.tix.html#tabular-listbox)
        - [Менеджеры виджетов](https://python-all.ru/3.0/library/tkinter.tix.html#manager-widgets)
        - [Типы изображений](https://python-all.ru/3.0/library/tkinter.tix.html#image-types)
        - [Прочие виджеты](https://python-all.ru/3.0/library/tkinter.tix.html#miscellaneous-widgets)
        - [Менеджер геометрии Form](https://python-all.ru/3.0/library/tkinter.tix.html#form-geometry-manager)
      - [Команды Tix](https://python-all.ru/3.0/library/tkinter.tix.html#tix-commands)
    - [`tkinter.scrolledtext` – виджет текста с прокруткой](https://python-all.ru/3.0/library/tkinter.scrolledtext.html)
    - [`turtle` – графика Turtle для Tk](https://python-all.ru/3.0/library/turtle.html)

      - [Введение](https://python-all.ru/3.0/library/turtle.html#introduction)
      - [Обзор доступных методов Turtle и Screen](https://python-all.ru/3.0/library/turtle.html#overview-over-available-turtle-and-screen-methods)

        - [Методы черепашки](https://python-all.ru/3.0/library/turtle.html#turtle-methods)
        - [Методы TurtleScreen/Screen](https://python-all.ru/3.0/library/turtle.html#methods-of-turtlescreen-screen)
      - [Методы RawTurtle/Turtle и соответствующие функции](https://python-all.ru/3.0/library/turtle.html#methods-of-rawturtle-turtle-and-corresponding-functions)

        - [Движение черепашки](https://python-all.ru/3.0/library/turtle.html#turtle-motion)
        - [Состояние черепашки](https://python-all.ru/3.0/library/turtle.html#tell-turtle-s-state)
        - [Настройки измерений](https://python-all.ru/3.0/library/turtle.html#settings-for-measurement)
        - [Управление пером](https://python-all.ru/3.0/library/turtle.html#pen-control)

          - [Состояние рисования](https://python-all.ru/3.0/library/turtle.html#drawing-state)
          - [Управление цветом](https://python-all.ru/3.0/library/turtle.html#color-control)
          - [Заливка](https://python-all.ru/3.0/library/turtle.html#filling)
          - [Дополнительное управление рисованием](https://python-all.ru/3.0/library/turtle.html#more-drawing-control)
        - [Состояние черепашки](https://python-all.ru/3.0/library/turtle.html#turtle-state)

          - [Видимость](https://python-all.ru/3.0/library/turtle.html#visibility)
          - [Внешний вид](https://python-all.ru/3.0/library/turtle.html#appearance)
        - [Использование событий](https://python-all.ru/3.0/library/turtle.html#using-events)
        - [Специальные методы черепашки](https://python-all.ru/3.0/library/turtle.html#special-turtle-methods)
        - [Экскурс об использовании составных фигур](https://python-all.ru/3.0/library/turtle.html#excursus-about-the-use-of-compound-shapes)
      - [Методы TurtleScreen/Screen и соответствующие функции](https://python-all.ru/3.0/library/turtle.html#methods-of-turtlescreen-screen-and-corresponding-functions)

        - [Управление окном](https://python-all.ru/3.0/library/turtle.html#window-control)
        - [Управление анимацией](https://python-all.ru/3.0/library/turtle.html#animation-control)
        - [Использование событий экрана](https://python-all.ru/3.0/library/turtle.html#using-screen-events)
        - [Настройки и специальные методы](https://python-all.ru/3.0/library/turtle.html#settings-and-special-methods)
        - [Методы, специфичные для Screen и не унаследованные от TurtleScreen](https://python-all.ru/3.0/library/turtle.html#methods-specific-to-screen-not-inherited-from-turtlescreen)
      - [Публичные классы модуля `turtle`](https://python-all.ru/3.0/library/turtle.html#the-public-classes-of-the-module-turtle)
      - [Справка и настройка](https://python-all.ru/3.0/library/turtle.html#help-and-configuration)

        - [Как пользоваться справкой](https://python-all.ru/3.0/library/turtle.html#how-to-use-help)
        - [Перевод docstrings на разные языки](https://python-all.ru/3.0/library/turtle.html#translation-of-docstrings-into-different-languages)
        - [Как настроить Screen и Turtles](https://python-all.ru/3.0/library/turtle.html#how-to-configure-screen-and-turtles)
      - [Демонстрационные скрипты](https://python-all.ru/3.0/library/turtle.html#demo-scripts)
      - [Изменения начиная с Python 2.6](https://python-all.ru/3.0/library/turtle.html#changes-since-python-2-6)
    - [IDLE](https://python-all.ru/3.0/library/idle.html)

      - [Меню](https://python-all.ru/3.0/library/idle.html#menus)

        - [Меню «Файл»](https://python-all.ru/3.0/library/idle.html#file-menu)
        - [Меню «Правка»](https://python-all.ru/3.0/library/idle.html#edit-menu)
        - [Меню «Окно»](https://python-all.ru/3.0/library/idle.html#windows-menu)
        - [Меню «Отладка» (только в окне Python Shell)](https://python-all.ru/3.0/library/idle.html#debug-menu-in-the-python-shell-window-only)
      - [Основы редактирования и навигации](https://python-all.ru/3.0/library/idle.html#basic-editing-and-navigation)

        - [Автоматические отступы](https://python-all.ru/3.0/library/idle.html#automatic-indentation)
        - [Окно оболочки Python](https://python-all.ru/3.0/library/idle.html#python-shell-window)
      - [Цвета синтаксиса](https://python-all.ru/3.0/library/idle.html#syntax-colors)

        - [Использование командной строки](https://python-all.ru/3.0/library/idle.html#command-line-usage)
    - [Другие пакеты графического интерфейса пользователя](https://python-all.ru/3.0/library/othergui.html)
  - [Инструменты разработки](https://python-all.ru/3.0/library/development.html)

    - [`pydoc` – генератор документации и справочная система](https://python-all.ru/3.0/library/pydoc.html)
    - [`doctest` – тестирование интерактивных примеров Python](https://python-all.ru/3.0/library/doctest.html)

      - [Простое использование: проверка примеров в строках документации](https://python-all.ru/3.0/library/doctest.html#simple-usage-checking-examples-in-docstrings)
      - [Простое использование: проверка примеров в текстовом файле](https://python-all.ru/3.0/library/doctest.html#simple-usage-checking-examples-in-a-text-file)
      - [Как это работает](https://python-all.ru/3.0/library/doctest.html#how-it-works)

        - [Какие строки документации проверяются?](https://python-all.ru/3.0/library/doctest.html#which-docstrings-are-examined)
        - [Как распознаются примеры в строках документации?](https://python-all.ru/3.0/library/doctest.html#how-are-docstring-examples-recognized)
        - [Каков контекст выполнения?](https://python-all.ru/3.0/library/doctest.html#what-s-the-execution-context)
        - [А как насчёт исключений?](https://python-all.ru/3.0/library/doctest.html#what-about-exceptions)
        - [Флаги и директивы](https://python-all.ru/3.0/library/doctest.html#option-flags-and-directives)
        - [Предупреждения](https://python-all.ru/3.0/library/doctest.html#warnings)
      - [Базовый API](https://python-all.ru/3.0/library/doctest.html#basic-api)
      - [API unittest](https://python-all.ru/3.0/library/doctest.html#unittest-api)
      - [Расширенный API](https://python-all.ru/3.0/library/doctest.html#advanced-api)

        - [Объекты DocTest](https://python-all.ru/3.0/library/doctest.html#doctest-objects)
        - [Объекты Example](https://python-all.ru/3.0/library/doctest.html#example-objects)
        - [Объекты DocTestFinder](https://python-all.ru/3.0/library/doctest.html#doctestfinder-objects)
        - [Объекты DocTestParser](https://python-all.ru/3.0/library/doctest.html#doctestparser-objects)
        - [Объекты DocTestRunner](https://python-all.ru/3.0/library/doctest.html#doctestrunner-objects)
        - [Объекты OutputChecker](https://python-all.ru/3.0/library/doctest.html#outputchecker-objects)
      - [Отладка](https://python-all.ru/3.0/library/doctest.html#debugging)
      - [Трибуна](https://python-all.ru/3.0/library/doctest.html#soapbox)
    - [`unittest` – фреймворк для модульного тестирования](https://python-all.ru/3.0/library/unittest.html)

      - [Простой пример](https://python-all.ru/3.0/library/unittest.html#basic-example)
      - [Организация тестового кода](https://python-all.ru/3.0/library/unittest.html#organizing-test-code)
      - [Повторное использование старого тестового кода](https://python-all.ru/3.0/library/unittest.html#re-using-old-test-code)
      - [Классы и функции](https://python-all.ru/3.0/library/unittest.html#classes-and-functions)
      - [Объекты TestCase](https://python-all.ru/3.0/library/unittest.html#id1)
      - [Объекты TestSuite](https://python-all.ru/3.0/library/unittest.html#id2)
      - [Объекты TestResult](https://python-all.ru/3.0/library/unittest.html#id3)
      - [Объекты TestLoader](https://python-all.ru/3.0/library/unittest.html#id4)
    - [2to3 – автоматический перенос кода с Python 2 на Python 3](https://python-all.ru/3.0/library/2to3.html)

      - [Использование 2to3](https://python-all.ru/3.0/library/2to3.html#using-2to3)
      - [`lib2to3` – библиотека 2to3](https://python-all.ru/3.0/library/2to3.html#module-lib2to3)
    - [`test` – пакет регрессионных тестов для Python](https://python-all.ru/3.0/library/test.html)

      - [Написание модульных тестов для пакета `test`](https://python-all.ru/3.0/library/test.html#writing-unit-tests-for-the-test-package)
      - [Запуск тестов с помощью `test.regrtest`](https://python-all.ru/3.0/library/test.html#running-tests-using-test-regrtest)
    - [`test.support` – вспомогательные функции для тестов](https://python-all.ru/3.0/library/test.html#module-test.support)
  - [Отладка и профилирование](https://python-all.ru/3.0/library/debug.html)

    - [`bdb` – каркас отладчика](https://python-all.ru/3.0/library/bdb.html)
    - [`pdb` – отладчик Python](https://python-all.ru/3.0/library/pdb.html)
    - [Команды отладчика](https://python-all.ru/3.0/library/pdb.html#id1)
    - [Профилировщики Python](https://python-all.ru/3.0/library/profile.html)

      - [Введение в профилировщики](https://python-all.ru/3.0/library/profile.html#introduction-to-the-profilers)
      - [Краткое руководство пользователя](https://python-all.ru/3.0/library/profile.html#instant-user-s-manual)
      - [Что такое детерминированное профилирование?](https://python-all.ru/3.0/library/profile.html#what-is-deterministic-profiling)
      - [Справочное руководство – `profile` и `cProfile`](https://python-all.ru/3.0/library/profile.html#module-pstats)

        - [Класс `Stats`](https://python-all.ru/3.0/library/profile.html#the-stats-class)
      - [Ограничения](https://python-all.ru/3.0/library/profile.html#limitations)
      - [Калибровка](https://python-all.ru/3.0/library/profile.html#calibration)
      - [Расширения – создание более качественных профилировщиков](https://python-all.ru/3.0/library/profile.html#extensions-deriving-better-profilers)
    - [`timeit` – измерение времени выполнения небольших фрагментов кода](https://python-all.ru/3.0/library/timeit.html)

      - [Интерфейс командной строки](https://python-all.ru/3.0/library/timeit.html#command-line-interface)
      - [Примеры](https://python-all.ru/3.0/library/timeit.html#examples)
    - [`trace` – трассировка или отслеживание выполнения операторов Python](https://python-all.ru/3.0/library/trace.html)

      - [Использование командной строки](https://python-all.ru/3.0/library/trace.html#command-line-usage)
      - [Программный интерфейс](https://python-all.ru/3.0/library/trace.html#programming-interface)
  - [Службы выполнения Python](https://python-all.ru/3.0/library/python.html)

    - [`sys` – системно-зависимые параметры и функции](https://python-all.ru/3.0/library/sys.html)
    - [`builtins` – встроенные объекты](https://python-all.ru/3.0/library/builtins.html)
    - [`__main__` – среда верхнего уровня для скриптов](https://python-all.ru/3.0/library/__main__.html)
    - [`warnings` – управление предупреждениями](https://python-all.ru/3.0/library/warnings.html)

      - [Категории предупреждений](https://python-all.ru/3.0/library/warnings.html#id1)
      - [Фильтр предупреждений](https://python-all.ru/3.0/library/warnings.html#the-warnings-filter)
      - [Временное подавление предупреждений](https://python-all.ru/3.0/library/warnings.html#temporarily-suppressing-warnings)
      - [Тестирование предупреждений](https://python-all.ru/3.0/library/warnings.html#testing-warnings)
      - [Доступные функции](https://python-all.ru/3.0/library/warnings.html#available-functions)
      - [Доступные контекстные менеджеры](https://python-all.ru/3.0/library/warnings.html#available-context-managers)
    - [`contextlib` – утилиты для работы с контекстными менеджерами `with`.](https://python-all.ru/3.0/library/contextlib.html)
    - [`abc` – абстрактные базовые классы](https://python-all.ru/3.0/library/abc.html)
    - [`atexit` – обработчики завершения](https://python-all.ru/3.0/library/atexit.html)

      - [`atexit` Пример](https://python-all.ru/3.0/library/atexit.html#id1)
    - [`traceback` – вывод или получение трассировки стека](https://python-all.ru/3.0/library/traceback.html)

      - [Примеры Traceback](https://python-all.ru/3.0/library/traceback.html#traceback-examples)
    - [`__future__` – определения future-инструкций](https://python-all.ru/3.0/library/__future__.html)
    - [`gc` – интерфейс сборщика мусора](https://python-all.ru/3.0/library/gc.html)
    - [`inspect` – инспекция активных объектов](https://python-all.ru/3.0/library/inspect.html)

      - [Типы и члены](https://python-all.ru/3.0/library/inspect.html#types-and-members)
      - [Получение исходного кода](https://python-all.ru/3.0/library/inspect.html#retrieving-source-code)
      - [Классы и функции](https://python-all.ru/3.0/library/inspect.html#classes-and-functions)
      - [Стек интерпретатора](https://python-all.ru/3.0/library/inspect.html#the-interpreter-stack)
    - [`site` – хук конфигурации, специфичной для окружения](https://python-all.ru/3.0/library/site.html)
    - [`fpectl` – управление исключениями с плавающей точкой](https://python-all.ru/3.0/library/fpectl.html)

      - [Пример](https://python-all.ru/3.0/library/fpectl.html#example)
      - [Ограничения и прочие соображения](https://python-all.ru/3.0/library/fpectl.html#limitations-and-other-considerations)
  - [Пользовательские интерпретаторы Python](https://python-all.ru/3.0/library/custominterp.html)

    - [`code` – базовые классы интерпретатора](https://python-all.ru/3.0/library/code.html)

      - [Объекты интерактивного интерпретатора](https://python-all.ru/3.0/library/code.html#interactive-interpreter-objects)
      - [Объекты интерактивной консоли](https://python-all.ru/3.0/library/code.html#interactive-console-objects)
    - [`codeop` – компиляция кода Python](https://python-all.ru/3.0/library/codeop.html)
  - [Импорт модулей](https://python-all.ru/3.0/library/modules.html)

    - [`imp` – доступ к внутренним механизмам `import`](https://python-all.ru/3.0/library/imp.html)

      - [Примеры](https://python-all.ru/3.0/library/imp.html#examples)
    - [`zipimport` – импорт модулей из Zip-архивов](https://python-all.ru/3.0/library/zipimport.html)

      - [Объекты zipimporter](https://python-all.ru/3.0/library/zipimport.html#id1)
      - [Примеры](https://python-all.ru/3.0/library/zipimport.html#examples)
    - [`pkgutil` – утилита расширения пакетов](https://python-all.ru/3.0/library/pkgutil.html)
    - [`modulefinder` – поиск модулей, используемых сценарием](https://python-all.ru/3.0/library/modulefinder.html)

      - [Пример использования `ModuleFinder`](https://python-all.ru/3.0/library/modulefinder.html#example-usage-of-modulefinder)
    - [`runpy` – поиск и выполнение модулей Python](https://python-all.ru/3.0/library/runpy.html)
  - [Службы языка Python](https://python-all.ru/3.0/library/language.html)

    - [`parser` – доступ к деревьям разбора Python](https://python-all.ru/3.0/library/parser.html)

      - [Создание ST-объектов](https://python-all.ru/3.0/library/parser.html#creating-st-objects)
      - [Преобразование ST-объектов](https://python-all.ru/3.0/library/parser.html#converting-st-objects)
      - [Запросы к ST-объектам](https://python-all.ru/3.0/library/parser.html#queries-on-st-objects)
      - [Исключения и обработка ошибок](https://python-all.ru/3.0/library/parser.html#exceptions-and-error-handling)
      - [ST-объекты](https://python-all.ru/3.0/library/parser.html#id1)
      - [Примеры](https://python-all.ru/3.0/library/parser.html#examples)

        - [Эмуляция `compile()`](https://python-all.ru/3.0/library/parser.html#emulation-of-compile)
        - [Обнаружение информации](https://python-all.ru/3.0/library/parser.html#information-discovery)
    - [Абстрактные синтаксические деревья](https://python-all.ru/3.0/library/ast.html)

      - [Классы узлов](https://python-all.ru/3.0/library/ast.html#node-classes)
      - [Абстрактная грамматика](https://python-all.ru/3.0/library/ast.html#id1)
      - [`ast` Вспомогательные функции](https://python-all.ru/3.0/library/ast.html#ast-helpers)
    - [`symtable` – доступ к таблицам символов компилятора](https://python-all.ru/3.0/library/symtable.html)

      - [Генерация таблиц символов](https://python-all.ru/3.0/library/symtable.html#generating-symbol-tables)
      - [Изучение таблиц символов](https://python-all.ru/3.0/library/symtable.html#examining-symbol-tables)
    - [`symbol` – константы, используемые с деревьями разбора Python](https://python-all.ru/3.0/library/symbol.html)
    - [`token` – константы, используемые с деревьями разбора Python](https://python-all.ru/3.0/library/token.html)
    - [`keyword` – проверка на ключевые слова Python](https://python-all.ru/3.0/library/keyword.html)
    - [`tokenize` – Токенизатор исходного кода Python](https://python-all.ru/3.0/library/tokenize.html)
    - [`tabnanny` – Обнаружение неоднозначных отступов](https://python-all.ru/3.0/library/tabnanny.html)
    - [`pyclbr` – Поддержка браузера классов Python](https://python-all.ru/3.0/library/pyclbr.html)

      - [Объекты классов](https://python-all.ru/3.0/library/pyclbr.html#class-objects)
      - [Объекты функций](https://python-all.ru/3.0/library/pyclbr.html#function-objects)
    - [`py_compile` – Компиляция исходных файлов Python](https://python-all.ru/3.0/library/py_compile.html)
    - [`compileall` – Байт-компиляция библиотек Python](https://python-all.ru/3.0/library/compileall.html)
    - [`dis` – Дизассемблер байт-кода Python](https://python-all.ru/3.0/library/dis.html)

      - [Инструкции байт-кода Python](https://python-all.ru/3.0/library/dis.html#python-bytecode-instructions)
    - [`pickletools` – Инструменты для разработчиков pickle.](https://python-all.ru/3.0/library/pickletools.html)
    - [`distutils` – Сборка и установка модулей Python](https://python-all.ru/3.0/library/distutils.html)
  - [Прочие службы](https://python-all.ru/3.0/library/misc.html)

    - [`formatter` – Универсальное форматирование вывода](https://python-all.ru/3.0/library/formatter.html)

      - [Интерфейс Formatter](https://python-all.ru/3.0/library/formatter.html#the-formatter-interface)
      - [Реализации Formatter](https://python-all.ru/3.0/library/formatter.html#formatter-implementations)
      - [Интерфейс Writer](https://python-all.ru/3.0/library/formatter.html#the-writer-interface)
      - [Реализации Writer](https://python-all.ru/3.0/library/formatter.html#writer-implementations)
  - [Службы, специфичные для MS Windows](https://python-all.ru/3.0/library/windows.html)

    - [`msilib` – Чтение и запись файлов Microsoft Installer](https://python-all.ru/3.0/library/msilib.html)

      - [Объекты базы данных](https://python-all.ru/3.0/library/msilib.html#id1)
      - [Объекты представления](https://python-all.ru/3.0/library/msilib.html#id2)
      - [Объекты сводной информации](https://python-all.ru/3.0/library/msilib.html#summary-information-objects)
      - [Объекты записей](https://python-all.ru/3.0/library/msilib.html#id3)
      - [Ошибки](https://python-all.ru/3.0/library/msilib.html#errors)
      - [Объекты CAB](https://python-all.ru/3.0/library/msilib.html#cab-objects)
      - [Объекты каталогов](https://python-all.ru/3.0/library/msilib.html#directory-objects)
      - [Возможности](https://python-all.ru/3.0/library/msilib.html#id4)
      - [Классы графического интерфейса](https://python-all.ru/3.0/library/msilib.html#gui-classes)
      - [Предварительно вычисленные таблицы](https://python-all.ru/3.0/library/msilib.html#precomputed-tables)
    - [`msvcrt` – Полезные процедуры из MS VC++ runtime](https://python-all.ru/3.0/library/msvcrt.html)

      - [Операции с файлами](https://python-all.ru/3.0/library/msvcrt.html#file-operations)
      - [Консольный ввод/вывод](https://python-all.ru/3.0/library/msvcrt.html#console-i-o)
      - [Прочие функции](https://python-all.ru/3.0/library/msvcrt.html#other-functions)
    - [`winreg` – Доступ к реестру Windows](https://python-all.ru/3.0/library/winreg.html)

      - [Объекты дескрипторов реестра](https://python-all.ru/3.0/library/winreg.html#registry-handle-objects)
    - [`winsound` – Интерфейс воспроизведения звука для Windows](https://python-all.ru/3.0/library/winsound.html)
  - [Специфические для Unix службы](https://python-all.ru/3.0/library/unix.html)

    - [`posix` – Самые распространённые системные вызовы POSIX](https://python-all.ru/3.0/library/posix.html)

      - [Поддержка больших файлов](https://python-all.ru/3.0/library/posix.html#large-file-support)
      - [Примечательное содержимое модуля](https://python-all.ru/3.0/library/posix.html#notable-module-contents)
    - [`pwd` – База данных паролей](https://python-all.ru/3.0/library/pwd.html)
    - [`spwd` – База данных теневых паролей](https://python-all.ru/3.0/library/spwd.html)
    - [`grp` – База данных групп](https://python-all.ru/3.0/library/grp.html)
    - [`crypt` – Функция проверки паролей Unix](https://python-all.ru/3.0/library/crypt.html)
    - [`termios` – Управление tty в стиле POSIX](https://python-all.ru/3.0/library/termios.html)

      - [Пример](https://python-all.ru/3.0/library/termios.html#example)
    - [`tty` – Функции управления терминалом](https://python-all.ru/3.0/library/tty.html)
    - [`pty` – Утилиты псевдотерминала](https://python-all.ru/3.0/library/pty.html)
    - [`fcntl` – Системные вызовы `fcntl()` и `ioctl()`](https://python-all.ru/3.0/library/fcntl.html)
    - [`pipes` – Интерфейс к конвейерам оболочки](https://python-all.ru/3.0/library/pipes.html)

      - [Объекты шаблонов](https://python-all.ru/3.0/library/pipes.html#id1)
    - [`resource` – Информация об использовании ресурсов](https://python-all.ru/3.0/library/resource.html)

      - [Ограничения ресурсов](https://python-all.ru/3.0/library/resource.html#resource-limits)
      - [Использование ресурсов](https://python-all.ru/3.0/library/resource.html#resource-usage)
    - [`nis` – Интерфейс к NIS (Yellow Pages) от Sun](https://python-all.ru/3.0/library/nis.html)
    - [`syslog` – Функции библиотеки syslog Unix](https://python-all.ru/3.0/library/syslog.html)
  - [Недокументированные модули](https://python-all.ru/3.0/library/undoc.html)

    - [Платформозависимые модули](https://python-all.ru/3.0/library/undoc.html#platform-specific-modules)
- [Расширение и встраивание интерпретатора Python](https://python-all.ru/3.0/extending/index.html)

  - [Расширение Python с помощью C или C++](https://python-all.ru/3.0/extending/extending.html)

    - [Простой пример](https://python-all.ru/3.0/extending/extending.html#a-simple-example)
    - [Интермеццо: ошибки и исключения](https://python-all.ru/3.0/extending/extending.html#intermezzo-errors-and-exceptions)
    - [Возвращение к примеру](https://python-all.ru/3.0/extending/extending.html#back-to-the-example)
    - [Таблица методов модуля и функция инициализации](https://python-all.ru/3.0/extending/extending.html#the-module-s-method-table-and-initialization-function)
    - [Компиляция и компоновка](https://python-all.ru/3.0/extending/extending.html#compilation-and-linkage)
    - [Вызов функций Python из C](https://python-all.ru/3.0/extending/extending.html#calling-python-functions-from-c)
    - [Извлечение параметров в функциях расширения](https://python-all.ru/3.0/extending/extending.html#extracting-parameters-in-extension-functions)
    - [Именованные параметры для функций расширения](https://python-all.ru/3.0/extending/extending.html#keyword-parameters-for-extension-functions)
    - [Построение произвольных значений](https://python-all.ru/3.0/extending/extending.html#building-arbitrary-values)
    - [Счётчики ссылок](https://python-all.ru/3.0/extending/extending.html#reference-counts)

      - [Подсчёт ссылок в Python](https://python-all.ru/3.0/extending/extending.html#reference-counting-in-python)
      - [Правила владения](https://python-all.ru/3.0/extending/extending.html#ownership-rules)
      - [Тонкий лёд](https://python-all.ru/3.0/extending/extending.html#thin-ice)
      - [NULL-указатели](https://python-all.ru/3.0/extending/extending.html#null-pointers)
    - [Написание расширений на C++](https://python-all.ru/3.0/extending/extending.html#writing-extensions-in-c)
    - [Предоставление C API для модуля расширения](https://python-all.ru/3.0/extending/extending.html#providing-a-c-api-for-an-extension-module)
  - [Определение новых типов](https://python-all.ru/3.0/extending/newtypes.html)

    - [Основы](https://python-all.ru/3.0/extending/newtypes.html#the-basics)

      - [Добавление данных и методов к базовому примеру](https://python-all.ru/3.0/extending/newtypes.html#adding-data-and-methods-to-the-basic-example)
      - [Предоставление более точного контроля над атрибутами данных](https://python-all.ru/3.0/extending/newtypes.html#providing-finer-control-over-data-attributes)
      - [Поддержка циклической сборки мусора](https://python-all.ru/3.0/extending/newtypes.html#supporting-cyclic-garbage-collection)
      - [Наследование от других типов](https://python-all.ru/3.0/extending/newtypes.html#subclassing-other-types)
    - [Методы типа](https://python-all.ru/3.0/extending/newtypes.html#type-methods)

      - [Финализация и освобождение памяти](https://python-all.ru/3.0/extending/newtypes.html#finalization-and-de-allocation)
      - [Представление объекта](https://python-all.ru/3.0/extending/newtypes.html#object-presentation)
      - [Управление атрибутами](https://python-all.ru/3.0/extending/newtypes.html#attribute-management)

        - [Общее управление атрибутами](https://python-all.ru/3.0/extending/newtypes.html#generic-attribute-management)
        - [Управление атрибутами для конкретного типа](https://python-all.ru/3.0/extending/newtypes.html#type-specific-attribute-management)
      - [Поддержка абстрактных протоколов](https://python-all.ru/3.0/extending/newtypes.html#abstract-protocol-support)
      - [Поддержка слабых ссылок](https://python-all.ru/3.0/extending/newtypes.html#weak-reference-support)
      - [Дополнительные предложения](https://python-all.ru/3.0/extending/newtypes.html#more-suggestions)
  - [Сборка расширений на C и C++ с помощью distutils](https://python-all.ru/3.0/extending/building.html)

    - [Распространение модулей расширения](https://python-all.ru/3.0/extending/building.html#distributing-your-extension-modules)
  - [Сборка расширений C и C++ в Windows](https://python-all.ru/3.0/extending/windows.html)

    - [Подход Cookbook](https://python-all.ru/3.0/extending/windows.html#a-cookbook-approach)
    - [Различия между Unix и Windows](https://python-all.ru/3.0/extending/windows.html#differences-between-unix-and-windows)
    - [Использование DLL на практике](https://python-all.ru/3.0/extending/windows.html#using-dlls-in-practice)
  - [Встраивание Python в другое приложение](https://python-all.ru/3.0/extending/embedding.html)

    - [Встраивание очень высокого уровня](https://python-all.ru/3.0/extending/embedding.html#very-high-level-embedding)
    - [За пределами встраивания очень высокого уровня: обзор](https://python-all.ru/3.0/extending/embedding.html#beyond-very-high-level-embedding-an-overview)
    - [Чистое встраивание](https://python-all.ru/3.0/extending/embedding.html#id1)
    - [Расширение встроенного Python](https://python-all.ru/3.0/extending/embedding.html#extending-embedded-python)
    - [Встраивание Python в C++](https://python-all.ru/3.0/extending/embedding.html#embedding-python-in-c)
    - [Требования к компоновке](https://python-all.ru/3.0/extending/embedding.html#linking-requirements)
- [Справочное руководство по Python/C API](https://python-all.ru/3.0/c-api/index.html)

  - [Введение](https://python-all.ru/3.0/c-api/intro.html)

    - [Заголовочные файлы](https://python-all.ru/3.0/c-api/intro.html#include-files)
    - [Объекты, типы и счетчики ссылок](https://python-all.ru/3.0/c-api/intro.html#objects-types-and-reference-counts)

      - [Счётчики ссылок](https://python-all.ru/3.0/c-api/intro.html#reference-counts)

        - [Подробности подсчёта ссылок](https://python-all.ru/3.0/c-api/intro.html#reference-count-details)
      - [Типы](https://python-all.ru/3.0/c-api/intro.html#types)
    - [Исключения](https://python-all.ru/3.0/c-api/intro.html#exceptions)
    - [Встраивание Python](https://python-all.ru/3.0/c-api/intro.html#embedding-python)
    - [Отладочные сборки](https://python-all.ru/3.0/c-api/intro.html#debugging-builds)
  - [Очень высокоуровневый слой](https://python-all.ru/3.0/c-api/veryhigh.html)
  - [Подсчёт ссылок](https://python-all.ru/3.0/c-api/refcounting.html)
  - [Обработка исключений](https://python-all.ru/3.0/c-api/exceptions.html)

    - [Стандартные исключения](https://python-all.ru/3.0/c-api/exceptions.html#standard-exceptions)
  - [Утилиты](https://python-all.ru/3.0/c-api/utilities.html)

    - [Утилиты операционной системы](https://python-all.ru/3.0/c-api/sys.html)
    - [Системные функции](https://python-all.ru/3.0/c-api/sys.html#system-functions)
    - [Управление процессами](https://python-all.ru/3.0/c-api/sys.html#process-control)
    - [Импорт модулей](https://python-all.ru/3.0/c-api/import.html)
    - [Поддержка маршалинга данных](https://python-all.ru/3.0/c-api/marshal.html)
    - [Разбор аргументов и сборка значений](https://python-all.ru/3.0/c-api/arg.html)
    - [Преобразование и форматирование строк](https://python-all.ru/3.0/c-api/conversion.html)
    - [Рефлексия](https://python-all.ru/3.0/c-api/reflection.html)
  - [Слой абстрактных объектов](https://python-all.ru/3.0/c-api/abstract.html)

    - [Протокол объекта](https://python-all.ru/3.0/c-api/object.html)
    - [Протокол чисел](https://python-all.ru/3.0/c-api/number.html)
    - [Протокол последовательностей](https://python-all.ru/3.0/c-api/sequence.html)
    - [Протокол отображений](https://python-all.ru/3.0/c-api/mapping.html)
    - [Протокол итератора](https://python-all.ru/3.0/c-api/iter.html)
    - [Протокол буфера](https://python-all.ru/3.0/c-api/objbuffer.html)
  - [Слой конкретных объектов](https://python-all.ru/3.0/c-api/concrete.html)

    - [Базовые объекты](https://python-all.ru/3.0/c-api/concrete.html#fundamental-objects)

      - [Объекты типов](https://python-all.ru/3.0/c-api/type.html)
      - [Объект None](https://python-all.ru/3.0/c-api/none.html)
    - [Числовые объекты](https://python-all.ru/3.0/c-api/concrete.html#numeric-objects)

      - [Объекты целых чисел](https://python-all.ru/3.0/c-api/long.html)
      - [Объекты логических значений](https://python-all.ru/3.0/c-api/bool.html)
      - [Объекты чисел с плавающей запятой](https://python-all.ru/3.0/c-api/float.html)
      - [Объекты комплексных чисел](https://python-all.ru/3.0/c-api/complex.html)

        - [Комплексные числа как структуры C](https://python-all.ru/3.0/c-api/complex.html#complex-numbers-as-c-structures)
        - [Комплексные числа как объекты Python](https://python-all.ru/3.0/c-api/complex.html#complex-numbers-as-python-objects)
    - [Объекты последовательностей](https://python-all.ru/3.0/c-api/concrete.html#sequence-objects)

      - [Объекты bytes](https://python-all.ru/3.0/c-api/bytes.html)
      - [Объекты массива байтов](https://python-all.ru/3.0/c-api/bytearray.html)
      - [Объекты Unicode и кодеки](https://python-all.ru/3.0/c-api/unicode.html)

        - [Объекты Unicode](https://python-all.ru/3.0/c-api/unicode.html#unicode-objects)
        - [Встроенные кодеки](https://python-all.ru/3.0/c-api/unicode.html#built-in-codecs)
        - [Методы и слот-функции](https://python-all.ru/3.0/c-api/unicode.html#methods-and-slot-functions)
      - [Буферные объекты](https://python-all.ru/3.0/c-api/buffer.html)

        - [Функции для работы с буферами](https://python-all.ru/3.0/c-api/buffer.html#buffer-related-functions)
        - [Объекты memoryview](https://python-all.ru/3.0/c-api/buffer.html#memoryview-objects)
      - [Кортежи](https://python-all.ru/3.0/c-api/tuple.html)
      - [Списки](https://python-all.ru/3.0/c-api/list.html)
    - [Объекты-отображения](https://python-all.ru/3.0/c-api/concrete.html#mapping-objects)

      - [Объекты словарей](https://python-all.ru/3.0/c-api/dict.html)
    - [Прочие объекты](https://python-all.ru/3.0/c-api/concrete.html#other-objects)

      - [Множества](https://python-all.ru/3.0/c-api/set.html)
      - [Объекты функций](https://python-all.ru/3.0/c-api/function.html)
      - [Объекты методов экземпляра](https://python-all.ru/3.0/c-api/method.html)
      - [Объекты методов](https://python-all.ru/3.0/c-api/method.html#id1)
      - [Объекты файлов](https://python-all.ru/3.0/c-api/file.html)
      - [Объекты модулей](https://python-all.ru/3.0/c-api/module.html)
      - [Объекты итераторов](https://python-all.ru/3.0/c-api/iterator.html)
      - [Объекты дескрипторов](https://python-all.ru/3.0/c-api/descriptor.html)
      - [Объекты срезов](https://python-all.ru/3.0/c-api/slice.html)
      - [Объекты слабых ссылок](https://python-all.ru/3.0/c-api/weakref.html)
      - [CObjects](https://python-all.ru/3.0/c-api/cobject.html)
      - [Объекты ячеек](https://python-all.ru/3.0/c-api/cell.html)
      - [Объекты-генераторы](https://python-all.ru/3.0/c-api/gen.html)
      - [Объекты datetime](https://python-all.ru/3.0/c-api/datetime.html)
  - [Инициализация, финализация и потоки](https://python-all.ru/3.0/c-api/init.html)

    - [Состояние потока и глобальная блокировка интерпретатора](https://python-all.ru/3.0/c-api/init.html#thread-state-and-the-global-interpreter-lock)
    - [Профилирование и трассировка](https://python-all.ru/3.0/c-api/init.html#profiling-and-tracing)
    - [Расширенная поддержка отладчика](https://python-all.ru/3.0/c-api/init.html#advanced-debugger-support)
  - [Управление памятью](https://python-all.ru/3.0/c-api/memory.html)

    - [Обзор](https://python-all.ru/3.0/c-api/memory.html#overview)
    - [Интерфейс памяти](https://python-all.ru/3.0/c-api/memory.html#memory-interface)
    - [Примеры](https://python-all.ru/3.0/c-api/memory.html#examples)
  - [Поддержка реализации объектов](https://python-all.ru/3.0/c-api/objimpl.html)

    - [Выделение объектов в куче](https://python-all.ru/3.0/c-api/allocation.html)
    - [Общие структуры объектов](https://python-all.ru/3.0/c-api/structures.html)
    - [Объекты типов](https://python-all.ru/3.0/c-api/typeobj.html)
    - [Структуры числовых объектов](https://python-all.ru/3.0/c-api/typeobj.html#number-object-structures)
    - [Структуры объектов отображений](https://python-all.ru/3.0/c-api/typeobj.html#mapping-object-structures)
    - [Структуры объектов последовательностей](https://python-all.ru/3.0/c-api/typeobj.html#sequence-object-structures)
    - [Структуры буферных объектов](https://python-all.ru/3.0/c-api/typeobj.html#buffer-object-structures)
    - [Поддержка циклической сборки мусора](https://python-all.ru/3.0/c-api/gcsupport.html)
- [Распространение модулей Python](https://python-all.ru/3.0/distutils/index.html)

  - [Введение в Distutils](https://python-all.ru/3.0/distutils/introduction.html)

    - [Концепции и терминология](https://python-all.ru/3.0/distutils/introduction.html#concepts-terminology)
    - [Простой пример](https://python-all.ru/3.0/distutils/introduction.html#a-simple-example)
    - [Общая терминология Python](https://python-all.ru/3.0/distutils/introduction.html#general-python-terminology)
    - [Терминология Distutils](https://python-all.ru/3.0/distutils/introduction.html#distutils-specific-terminology)
  - [Написание сценария установки](https://python-all.ru/3.0/distutils/setupscript.html)

    - [Перечисление целых пакетов](https://python-all.ru/3.0/distutils/setupscript.html#listing-whole-packages)
    - [Перечисление отдельных модулей](https://python-all.ru/3.0/distutils/setupscript.html#listing-individual-modules)
    - [Описание модулей расширения](https://python-all.ru/3.0/distutils/setupscript.html#describing-extension-modules)

      - [Имена расширений и пакеты](https://python-all.ru/3.0/distutils/setupscript.html#extension-names-and-packages)
      - [Исходные файлы расширений](https://python-all.ru/3.0/distutils/setupscript.html#extension-source-files)
      - [Параметры препроцессора](https://python-all.ru/3.0/distutils/setupscript.html#preprocessor-options)
      - [Параметры библиотек](https://python-all.ru/3.0/distutils/setupscript.html#library-options)
      - [Другие опции](https://python-all.ru/3.0/distutils/setupscript.html#other-options)
    - [Взаимосвязи между дистрибутивами и пакетами](https://python-all.ru/3.0/distutils/setupscript.html#relationships-between-distributions-and-packages)
    - [Установка сценариев](https://python-all.ru/3.0/distutils/setupscript.html#installing-scripts)
    - [Установка данных пакета](https://python-all.ru/3.0/distutils/setupscript.html#installing-package-data)
    - [Установка дополнительных файлов](https://python-all.ru/3.0/distutils/setupscript.html#installing-additional-files)
    - [Дополнительные метаданные](https://python-all.ru/3.0/distutils/setupscript.html#additional-meta-data)
    - [Отладка сценария установки](https://python-all.ru/3.0/distutils/setupscript.html#debugging-the-setup-script)
  - [Написание конфигурационного файла установки](https://python-all.ru/3.0/distutils/configfile.html)
  - [Создание дистрибутива исходного кода](https://python-all.ru/3.0/distutils/sourcedist.html)

    - [Указание файлов для распространения](https://python-all.ru/3.0/distutils/sourcedist.html#specifying-the-files-to-distribute)
    - [Параметры манифеста](https://python-all.ru/3.0/distutils/sourcedist.html#manifest-related-options)
  - [Создание собранных дистрибутивов](https://python-all.ru/3.0/distutils/builtdist.html)

    - [Создание простых собранных дистрибутивов](https://python-all.ru/3.0/distutils/builtdist.html#creating-dumb-built-distributions)
    - [Создание RPM-пакетов](https://python-all.ru/3.0/distutils/builtdist.html#creating-rpm-packages)
    - [Создание установщиков для Windows](https://python-all.ru/3.0/distutils/builtdist.html#creating-windows-installers)
    - [Кросс-компиляция в Windows](https://python-all.ru/3.0/distutils/builtdist.html#cross-compiling-on-windows)

      - [Сценарий после установки](https://python-all.ru/3.0/distutils/builtdist.html#the-postinstallation-script)
    - [Контроль учётных записей пользователей Vista (UAC)](https://python-all.ru/3.0/distutils/builtdist.html#vista-user-access-control-uac)
  - [Регистрация в индексе пакетов](https://python-all.ru/3.0/distutils/packageindex.html)

    - [Файл .pypirc](https://python-all.ru/3.0/distutils/packageindex.html#the-pypirc-file)
  - [Загрузка пакетов в индекс пакетов](https://python-all.ru/3.0/distutils/uploading.html)
  - [Примеры](https://python-all.ru/3.0/distutils/examples.html)

    - [Чистое распространение Python (по модулям)](https://python-all.ru/3.0/distutils/examples.html#pure-python-distribution-by-module)
    - [Чистое распространение Python (по пакетам)](https://python-all.ru/3.0/distutils/examples.html#pure-python-distribution-by-package)
    - [Один модуль расширения](https://python-all.ru/3.0/distutils/examples.html#single-extension-module)
  - [Расширение Distutils](https://python-all.ru/3.0/distutils/extending.html)

    - [Интеграция новых команд](https://python-all.ru/3.0/distutils/extending.html#integrating-new-commands)
    - [Добавление новых типов распространения](https://python-all.ru/3.0/distutils/extending.html#adding-new-distribution-types)
  - [Справочник команд](https://python-all.ru/3.0/distutils/commandref.html)

    - [Установка модулей: семейство команд **install**](https://python-all.ru/3.0/distutils/commandref.html#installing-modules-the-install-command-family)

      - [**install\_data**](https://python-all.ru/3.0/distutils/commandref.html#install-data)
      - [**install\_scripts**](https://python-all.ru/3.0/distutils/commandref.html#install-scripts)
    - [Создание дистрибутива исходного кода: команда **sdist**](https://python-all.ru/3.0/distutils/commandref.html#creating-a-source-distribution-the-sdist-command)
  - [Справочник API](https://python-all.ru/3.0/distutils/apiref.html)

    - [`distutils.core` – Основная функциональность Distutils](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.core)
    - [`distutils.ccompiler` – Базовый класс CCompiler](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.ccompiler)
    - [`distutils.unixccompiler` – Компилятор C для Unix](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.unixccompiler)
    - [`distutils.msvccompiler` – Компилятор Microsoft](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.msvccompiler)
    - [`distutils.bcppcompiler` – Компилятор Borland](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.bcppcompiler)
    - [`distutils.cygwincompiler` – Компилятор Cygwin](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.cygwinccompiler)
    - [`distutils.emxccompiler` – Компилятор OS/2 EMX](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.emxccompiler)
    - [`distutils.mwerkscompiler` – Поддержка Metrowerks CodeWarrior](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.mwerkscompiler)
    - [`distutils.archive_util` – Утилиты архивирования](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.archive_util)
    - [`distutils.dep_util` – Проверка зависимостей](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.dep_util)
    - [`distutils.dir_util` – Операции с деревом каталогов](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.dir_util)
    - [`distutils.file_util` – Операции с отдельными файлами](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.file_util)
    - [`distutils.util` – Прочие вспомогательные функции](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.util)
    - [`distutils.dist` – Класс Distribution](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.dist)
    - [`distutils.extension` – Класс Extension](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.extension)
    - [`distutils.debug` – Режим отладки Distutils](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.debug)
    - [`distutils.errors` – Исключения Distutils](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.errors)
    - [`distutils.fancy_getopt` – Обёртка над стандартным модулем getopt](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.fancy_getopt)
    - [`distutils.filelist` – Класс FileList](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.filelist)
    - [`distutils.log` – Простое логирование в стиле PEP 282](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.log)
    - [`distutils.spawn` – Запуск подпроцесса](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.spawn)
    - [`distutils.sysconfig` – Информация о системной конфигурации](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.sysconfig)
    - [`distutils.text_file` – Класс TextFile](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.text_file)
    - [`distutils.version` – Классы номеров версий](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.version)
    - [`distutils.cmd` – Абстрактный базовый класс для команд Distutils](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.cmd)
    - [`distutils.command` – Отдельные команды Distutils](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.command)
    - [`distutils.command.bdist` – Сборка бинарного установщика](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.command.bdist)
    - [`distutils.command.bdist_packager` – Абстрактный базовый класс для упаковщиков](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.command.bdist_packager)
    - [`distutils.command.bdist_dumb` – Сборка «тупого» установщика](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.command.bdist_dumb)
    - [`distutils.command.bdist_msi` – Сборка бинарного пакета Microsoft Installer](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.command.bdist_msi)
    - [`distutils.command.bdist_rpm` – Сборка бинарного дистрибутива в виде Redhat RPM и SRPM](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.command.bdist_rpm)
    - [`distutils.command.bdist_wininst` – Сборка установщика для Windows](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.command.bdist_wininst)
    - [`distutils.command.sdist` – Сборка дистрибутива исходного кода](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.command.sdist)
    - [`distutils.command.build` – Сборка всех файлов пакета](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.command.build)
    - [`distutils.command.build_clib` – Сборка библиотек C в пакете](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.command.build_clib)
    - [`distutils.command.build_ext` – Сборка расширений в пакете](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.command.build_ext)
    - [`distutils.command.build_py` – Сборка .py/.pyc файлов пакета](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.command.build_py)
    - [`distutils.command.build_scripts` – Сборка скриптов пакета](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.command.build_scripts)
    - [`distutils.command.clean` – Очистка области сборки пакета](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.command.clean)
    - [`distutils.command.config` – Выполнение конфигурации пакета](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.command.config)
    - [`distutils.command.install` – Установка пакета](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.command.install)
    - [`distutils.command.install_data` – Установка файлов данных из пакета](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.command.install_data)
    - [`distutils.command.install_headers` – Установка заголовочных файлов C/C++ из пакета](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.command.install_headers)
    - [`distutils.command.install_lib` – Установка файлов библиотек из пакета](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.command.install_lib)
    - [`distutils.command.install_scripts` – Установка файлов скриптов из пакета](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.command.install_scripts)
    - [`distutils.command.register` – Регистрация модуля в Python Package Index](https://python-all.ru/3.0/distutils/apiref.html#module-distutils.command.register)
    - [Создание новой команды Distutils](https://python-all.ru/3.0/distutils/apiref.html#creating-a-new-distutils-command)
- [Установка модулей Python](https://python-all.ru/3.0/install/index.html)

  - [Введение](https://python-all.ru/3.0/install/index.html#introduction)

    - [Идеальный случай: простая установка](https://python-all.ru/3.0/install/index.html#best-case-trivial-installation)
    - [Новый стандарт: Distutils](https://python-all.ru/3.0/install/index.html#the-new-standard-distutils)
  - [Стандартная сборка и установка](https://python-all.ru/3.0/install/index.html#standard-build-and-install)

    - [Различия платформ](https://python-all.ru/3.0/install/index.html#platform-variations)
    - [Разделение задачи на части](https://python-all.ru/3.0/install/index.html#splitting-the-job-up)
    - [Как работает сборка](https://python-all.ru/3.0/install/index.html#how-building-works)
    - [Как работает установка](https://python-all.ru/3.0/install/index.html#how-installation-works)
  - [Альтернативная установка](https://python-all.ru/3.0/install/index.html#alternate-installation)

    - [Альтернативная установка: домашняя схема](https://python-all.ru/3.0/install/index.html#alternate-installation-the-home-scheme)
    - [Альтернативная установка: Unix (схема префикса)](https://python-all.ru/3.0/install/index.html#alternate-installation-unix-the-prefix-scheme)
    - [Альтернативная установка: Windows (схема префикса)](https://python-all.ru/3.0/install/index.html#alternate-installation-windows-the-prefix-scheme)
  - [Пользовательская установка](https://python-all.ru/3.0/install/index.html#custom-installation)

    - [Изменение пути поиска Python](https://python-all.ru/3.0/install/index.html#modifying-python-s-search-path)
  - [Файлы конфигурации Distutils](https://python-all.ru/3.0/install/index.html#distutils-configuration-files)

    - [Расположение и имена файлов конфигурации](https://python-all.ru/3.0/install/index.html#location-and-names-of-config-files)
    - [Синтаксис файлов конфигурации](https://python-all.ru/3.0/install/index.html#syntax-of-config-files)
  - [Сборка расширений: советы и рекомендации](https://python-all.ru/3.0/install/index.html#building-extensions-tips-and-tricks)

    - [Настройка флагов компилятора/компоновщика](https://python-all.ru/3.0/install/index.html#tweaking-compiler-linker-flags)
    - [Использование компиляторов, отличных от Microsoft, в Windows](https://python-all.ru/3.0/install/index.html#using-non-microsoft-compilers-on-windows)

      - [Borland/CodeGear C++](https://python-all.ru/3.0/install/index.html#borland-codegear-c)
      - [GNU C / Cygwin / MinGW](https://python-all.ru/3.0/install/index.html#gnu-c-cygwin-mingw)
- [Документирование Python](https://python-all.ru/3.0/documenting/index.html)

  - [Введение](https://python-all.ru/3.0/documenting/intro.html)
  - [Руководство по стилю](https://python-all.ru/3.0/documenting/style.html)
  - [Введение в reStructuredText](https://python-all.ru/3.0/documenting/rest.html)

    - [Абзацы](https://python-all.ru/3.0/documenting/rest.html#paragraphs)
    - [Встроенная разметка](https://python-all.ru/3.0/documenting/rest.html#inline-markup)
    - [Списки и цитаты](https://python-all.ru/3.0/documenting/rest.html#lists-and-quotes)
    - [Исходный код](https://python-all.ru/3.0/documenting/rest.html#source-code)
    - [Гиперссылки](https://python-all.ru/3.0/documenting/rest.html#hyperlinks)

      - [Внешние ссылки](https://python-all.ru/3.0/documenting/rest.html#external-links)
      - [Внутренние ссылки](https://python-all.ru/3.0/documenting/rest.html#internal-links)
    - [Разделы](https://python-all.ru/3.0/documenting/rest.html#sections)
    - [Явная разметка](https://python-all.ru/3.0/documenting/rest.html#explicit-markup)
    - [Директивы](https://python-all.ru/3.0/documenting/rest.html#directives)
    - [Сноски](https://python-all.ru/3.0/documenting/rest.html#footnotes)
    - [Комментарии](https://python-all.ru/3.0/documenting/rest.html#comments)
    - [Кодировка исходного кода](https://python-all.ru/3.0/documenting/rest.html#source-encoding)
    - [Подводные камни](https://python-all.ru/3.0/documenting/rest.html#gotchas)
  - [Дополнительные конструкции разметки](https://python-all.ru/3.0/documenting/markup.html)

    - [Разметка метаинформации](https://python-all.ru/3.0/documenting/markup.html#meta-information-markup)
    - [Разметка для модулей](https://python-all.ru/3.0/documenting/markup.html#module-specific-markup)
    - [Информационные единицы](https://python-all.ru/3.0/documenting/markup.html#information-units)
    - [Отображение примеров кода](https://python-all.ru/3.0/documenting/markup.html#showing-code-examples)
    - [Встроенная разметка](https://python-all.ru/3.0/documenting/markup.html#inline-markup)
    - [Разметка перекрёстных ссылок](https://python-all.ru/3.0/documenting/markup.html#cross-linking-markup)
    - [Разметка на уровне абзацев](https://python-all.ru/3.0/documenting/markup.html#paragraph-level-markup)
    - [Разметка оглавления](https://python-all.ru/3.0/documenting/markup.html#table-of-contents-markup)
    - [Разметка для создания указателя](https://python-all.ru/3.0/documenting/markup.html#index-generating-markup)
    - [Отображение грамматических правил](https://python-all.ru/3.0/documenting/markup.html#grammar-production-displays)
    - [Подстановки](https://python-all.ru/3.0/documenting/markup.html#substitutions)
  - [Отличия от разметки LaTeX](https://python-all.ru/3.0/documenting/fromlatex.html)

    - [Встроенная разметка](https://python-all.ru/3.0/documenting/fromlatex.html#inline-markup)
    - [Информационные единицы](https://python-all.ru/3.0/documenting/fromlatex.html#information-units)
    - [Структура](https://python-all.ru/3.0/documenting/fromlatex.html#structure)
- [Руководства Python HOWTO](https://python-all.ru/3.0/howto/index.html)

  - [HOWTO по продвижению Python](https://python-all.ru/3.0/howto/advocacy.html)

    - [Причины использовать Python](https://python-all.ru/3.0/howto/advocacy.html#reasons-to-use-python)

      - [Программируемость](https://python-all.ru/3.0/howto/advocacy.html#programmability)
      - [Прототипирование](https://python-all.ru/3.0/howto/advocacy.html#prototyping)
      - [Простота и лёгкость понимания](https://python-all.ru/3.0/howto/advocacy.html#simplicity-and-ease-of-understanding)
      - [Интеграция с Java](https://python-all.ru/3.0/howto/advocacy.html#java-integration)
    - [Аргументы и контраргументы](https://python-all.ru/3.0/howto/advocacy.html#arguments-and-rebuttals)
    - [Полезные ресурсы](https://python-all.ru/3.0/howto/advocacy.html#useful-resources)
  - [Перенос модулей расширения на версию 3.0](https://python-all.ru/3.0/howto/cporting.html)

    - [Условная компиляция](https://python-all.ru/3.0/howto/cporting.html#conditional-compilation)
    - [Изменения в объектных API](https://python-all.ru/3.0/howto/cporting.html#changes-to-object-apis)

      - [Объединение str/unicode](https://python-all.ru/3.0/howto/cporting.html#str-unicode-unification)
      - [Объединение long/int](https://python-all.ru/3.0/howto/cporting.html#long-int-unification)
    - [Инициализация и состояние модулей](https://python-all.ru/3.0/howto/cporting.html#module-initialization-and-state)
    - [Другие опции](https://python-all.ru/3.0/howto/cporting.html#other-options)
  - [Программирование с curses на Python](https://python-all.ru/3.0/howto/curses.html)

    - [Что такое curses?](https://python-all.ru/3.0/howto/curses.html#what-is-curses)

      - [Модуль curses в Python](https://python-all.ru/3.0/howto/curses.html#the-python-curses-module)
    - [Запуск и завершение приложения curses](https://python-all.ru/3.0/howto/curses.html#starting-and-ending-a-curses-application)
    - [Окна и пады](https://python-all.ru/3.0/howto/curses.html#windows-and-pads)
    - [Отображение текста](https://python-all.ru/3.0/howto/curses.html#displaying-text)

      - [Атрибуты и цвет](https://python-all.ru/3.0/howto/curses.html#attributes-and-color)
    - [Ввод пользователя](https://python-all.ru/3.0/howto/curses.html#user-input)
    - [Для получения дополнительных сведений](https://python-all.ru/3.0/howto/curses.html#for-more-information)
  - [Идиомы и анти-идиомы в Python](https://python-all.ru/3.0/howto/doanddont.html)

    - [Конструкции языка, которые не следует использовать](https://python-all.ru/3.0/howto/doanddont.html#language-constructs-you-should-not-use)

      - [from module import \*](https://python-all.ru/3.0/howto/doanddont.html#from-module-import)

        - [Внутри определений функций](https://python-all.ru/3.0/howto/doanddont.html#inside-function-definitions)
        - [На уровне модуля](https://python-all.ru/3.0/howto/doanddont.html#at-module-level)
        - [Когда это нормально](https://python-all.ru/3.0/howto/doanddont.html#when-it-is-just-fine)
      - [from module import name1, name2](https://python-all.ru/3.0/howto/doanddont.html#from-module-import-name1-name2)
      - [except:](https://python-all.ru/3.0/howto/doanddont.html#except)
    - [Исключения](https://python-all.ru/3.0/howto/doanddont.html#exceptions)
    - [Использование батареек](https://python-all.ru/3.0/howto/doanddont.html#using-the-batteries)
    - [Использование обратной косой черты для продолжения инструкций](https://python-all.ru/3.0/howto/doanddont.html#using-backslash-to-continue-statements)
  - [HOWTO по функциональному программированию](https://python-all.ru/3.0/howto/functional.html)

    - [Введение](https://python-all.ru/3.0/howto/functional.html#introduction)

      - [Формальная доказуемость](https://python-all.ru/3.0/howto/functional.html#formal-provability)
      - [Модульность](https://python-all.ru/3.0/howto/functional.html#modularity)
      - [Простота отладки и тестирования](https://python-all.ru/3.0/howto/functional.html#ease-of-debugging-and-testing)
      - [Композируемость](https://python-all.ru/3.0/howto/functional.html#composability)
    - [Итераторы](https://python-all.ru/3.0/howto/functional.html#iterators)

      - [Типы данных, поддерживающие итераторы](https://python-all.ru/3.0/howto/functional.html#data-types-that-support-iterators)
    - [Генераторные выражения и списковые включения](https://python-all.ru/3.0/howto/functional.html#generator-expressions-and-list-comprehensions)
    - [Генераторы](https://python-all.ru/3.0/howto/functional.html#generators)

      - [Передача значений в генератор](https://python-all.ru/3.0/howto/functional.html#passing-values-into-a-generator)
    - [Встроенные функции](https://python-all.ru/3.0/howto/functional.html#built-in-functions)
    - [Модуль itertools](https://python-all.ru/3.0/howto/functional.html#the-itertools-module)

      - [Создание новых итераторов](https://python-all.ru/3.0/howto/functional.html#creating-new-iterators)
      - [Вызов функций для элементов](https://python-all.ru/3.0/howto/functional.html#calling-functions-on-elements)
      - [Выбор элементов](https://python-all.ru/3.0/howto/functional.html#selecting-elements)
      - [Группировка элементов](https://python-all.ru/3.0/howto/functional.html#grouping-elements)
    - [Модуль functools](https://python-all.ru/3.0/howto/functional.html#the-functools-module)

      - [Модуль operator](https://python-all.ru/3.0/howto/functional.html#the-operator-module)
      - [Модуль functional](https://python-all.ru/3.0/howto/functional.html#the-functional-module)
    - [Небольшие функции и лямбда-выражение](https://python-all.ru/3.0/howto/functional.html#small-functions-and-the-lambda-expression)
    - [История изменений и благодарности](https://python-all.ru/3.0/howto/functional.html#revision-history-and-acknowledgements)
    - [Ссылки](https://python-all.ru/3.0/howto/functional.html#references)

      - [Общие](https://python-all.ru/3.0/howto/functional.html#general)
      - [Специфичное для Python](https://python-all.ru/3.0/howto/functional.html#python-specific)
      - [Документация Python](https://python-all.ru/3.0/howto/functional.html#python-documentation)
  - [HOWTO по регулярным выражениям](https://python-all.ru/3.0/howto/regex.html)

    - [Введение](https://python-all.ru/3.0/howto/regex.html#introduction)
    - [Простые шаблоны](https://python-all.ru/3.0/howto/regex.html#simple-patterns)

      - [Сопоставление символов](https://python-all.ru/3.0/howto/regex.html#matching-characters)
      - [Повторение](https://python-all.ru/3.0/howto/regex.html#repeating-things)
    - [Использование регулярных выражений](https://python-all.ru/3.0/howto/regex.html#using-regular-expressions)

      - [Компиляция регулярных выражений](https://python-all.ru/3.0/howto/regex.html#compiling-regular-expressions)
      - [Проблема обратной косой черты](https://python-all.ru/3.0/howto/regex.html#the-backslash-plague)
      - [Выполнение сопоставлений](https://python-all.ru/3.0/howto/regex.html#performing-matches)
      - [Функции уровня модуля](https://python-all.ru/3.0/howto/regex.html#module-level-functions)
      - [Флаги компиляции](https://python-all.ru/3.0/howto/regex.html#compilation-flags)
    - [Дополнительные возможности шаблонов](https://python-all.ru/3.0/howto/regex.html#more-pattern-power)

      - [Дополнительные метасимволы](https://python-all.ru/3.0/howto/regex.html#id2)
      - [Группировка](https://python-all.ru/3.0/howto/regex.html#grouping)
      - [Незахватывающие и именованные группы](https://python-all.ru/3.0/howto/regex.html#non-capturing-and-named-groups)
      - [Опережающие проверки](https://python-all.ru/3.0/howto/regex.html#lookahead-assertions)
    - [Изменение строк](https://python-all.ru/3.0/howto/regex.html#modifying-strings)

      - [Разделение строк](https://python-all.ru/3.0/howto/regex.html#splitting-strings)
      - [Поиск и замена](https://python-all.ru/3.0/howto/regex.html#search-and-replace)
    - [Распространённые проблемы](https://python-all.ru/3.0/howto/regex.html#common-problems)

      - [Использование строковых методов](https://python-all.ru/3.0/howto/regex.html#use-string-methods)
      - [match() и search()](https://python-all.ru/3.0/howto/regex.html#match-versus-search)
      - [Жадные и нежадные квантификаторы](https://python-all.ru/3.0/howto/regex.html#greedy-versus-non-greedy)
      - [Не используя re.VERBOSE](https://python-all.ru/3.0/howto/regex.html#not-using-re-verbose)
    - [Обратная связь](https://python-all.ru/3.0/howto/regex.html#feedback)
  - [Руководство по программированию сокетов](https://python-all.ru/3.0/howto/sockets.html)

    - [Сокеты](https://python-all.ru/3.0/howto/sockets.html#sockets)

      - [История](https://python-all.ru/3.0/howto/sockets.html#history)
    - [Создание сокета](https://python-all.ru/3.0/howto/sockets.html#creating-a-socket)

      - [Межпроцессное взаимодействие](https://python-all.ru/3.0/howto/sockets.html#ipc)
    - [Использование сокета](https://python-all.ru/3.0/howto/sockets.html#using-a-socket)

      - [Двоичные данные](https://python-all.ru/3.0/howto/sockets.html#binary-data)
    - [Отключение](https://python-all.ru/3.0/howto/sockets.html#disconnecting)

      - [Когда сокеты завершают работу](https://python-all.ru/3.0/howto/sockets.html#when-sockets-die)
    - [Неблокирующие сокеты](https://python-all.ru/3.0/howto/sockets.html#non-blocking-sockets)

      - [Производительность](https://python-all.ru/3.0/howto/sockets.html#performance)
  - [Руководство по Unicode](https://python-all.ru/3.0/howto/unicode.html)

    - [Введение в Unicode](https://python-all.ru/3.0/howto/unicode.html#introduction-to-unicode)

      - [История кодов символов](https://python-all.ru/3.0/howto/unicode.html#history-of-character-codes)
      - [Определения](https://python-all.ru/3.0/howto/unicode.html#definitions)
      - [Кодировки](https://python-all.ru/3.0/howto/unicode.html#encodings)
      - [Ссылки](https://python-all.ru/3.0/howto/unicode.html#references)
    - [Поддержка Unicode в Python](https://python-all.ru/3.0/howto/unicode.html#python-s-unicode-support)

      - [Тип str](https://python-all.ru/3.0/howto/unicode.html#the-string-type)
      - [Преобразование в байты](https://python-all.ru/3.0/howto/unicode.html#converting-to-bytes)
      - [Unicode-литералы в исходном коде Python](https://python-all.ru/3.0/howto/unicode.html#unicode-literals-in-python-source-code)
      - [Свойства Unicode](https://python-all.ru/3.0/howto/unicode.html#unicode-properties)
      - [Ссылки](https://python-all.ru/3.0/howto/unicode.html#id2)
    - [Чтение и запись данных Unicode](https://python-all.ru/3.0/howto/unicode.html#reading-and-writing-unicode-data)

      - [Имена файлов в Unicode](https://python-all.ru/3.0/howto/unicode.html#unicode-filenames)
      - [Советы по написанию программ с поддержкой Unicode](https://python-all.ru/3.0/howto/unicode.html#tips-for-writing-unicode-aware-programs)
      - [Ссылки](https://python-all.ru/3.0/howto/unicode.html#id3)
    - [История изменений и благодарности](https://python-all.ru/3.0/howto/unicode.html#revision-history-and-acknowledgements)
  - [HOWTO: получение интернет-ресурсов с помощью пакета urllib](https://python-all.ru/3.0/howto/urllib2.html)

    - [Введение](https://python-all.ru/3.0/howto/urllib2.html#introduction)
    - [Получение URL-адресов](https://python-all.ru/3.0/howto/urllib2.html#fetching-urls)

      - [Данные](https://python-all.ru/3.0/howto/urllib2.html#data)
      - [Заголовки](https://python-all.ru/3.0/howto/urllib2.html#headers)
    - [Обработка исключений](https://python-all.ru/3.0/howto/urllib2.html#handling-exceptions)

      - \<[URLError](https://python-all.ru/3.0/howto/urllib2.html#urlerror)\>
      - [HTTPError](https://python-all.ru/3.0/howto/urllib2.html#httperror)

        - [Коды ошибок](https://python-all.ru/3.0/howto/urllib2.html#error-codes)
      - [Заключение](https://python-all.ru/3.0/howto/urllib2.html#wrapping-it-up)

        - [Номер 1](https://python-all.ru/3.0/howto/urllib2.html#number-1)
        - [Номер 2](https://python-all.ru/3.0/howto/urllib2.html#number-2)
    - [info и geturl](https://python-all.ru/3.0/howto/urllib2.html#info-and-geturl)
    - [Открыватели и обработчики](https://python-all.ru/3.0/howto/urllib2.html#openers-and-handlers)
    - [Базовая аутентификация](https://python-all.ru/3.0/howto/urllib2.html#id6)
    - [Прокси](https://python-all.ru/3.0/howto/urllib2.html#proxies)
    - [Сокеты и слои](https://python-all.ru/3.0/howto/urllib2.html#sockets-and-layers)
    - [Сноски](https://python-all.ru/3.0/howto/urllib2.html#footnotes)
  - [HOWTO: использование Python в вебе](https://python-all.ru/3.0/howto/webservers.html)

    - [Низкоуровневый вид](https://python-all.ru/3.0/howto/webservers.html#the-low-level-view)

      - [Общий шлюзовый интерфейс](https://python-all.ru/3.0/howto/webservers.html#common-gateway-interface)

        - [Простой скрипт для тестирования CGI](https://python-all.ru/3.0/howto/webservers.html#simple-script-for-testing-cgi)
        - [Настройка CGI на собственном сервере](https://python-all.ru/3.0/howto/webservers.html#setting-up-cgi-on-your-own-server)
        - [Типичные проблемы CGI-скриптов](https://python-all.ru/3.0/howto/webservers.html#common-problems-with-cgi-scripts)
      - [mod\_python](https://python-all.ru/3.0/howto/webservers.html#id1)
      - [FastCGI и SCGI](https://python-all.ru/3.0/howto/webservers.html#fastcgi-and-scgi)

        - [Настройка FastCGI](https://python-all.ru/3.0/howto/webservers.html#setting-up-fastcgi)
      - [mod\_wsgi](https://python-all.ru/3.0/howto/webservers.html#mod-wsgi)
    - [Отступление: WSGI](https://python-all.ru/3.0/howto/webservers.html#step-back-wsgi)

      - [WSGI-серверы](https://python-all.ru/3.0/howto/webservers.html#wsgi-servers)
      - [Пример: MoinMoin](https://python-all.ru/3.0/howto/webservers.html#case-study-moinmoin)
    - [Модель-представление-контроллер](https://python-all.ru/3.0/howto/webservers.html#model-view-controller)
    - [Ингредиенты для веб-сайтов](https://python-all.ru/3.0/howto/webservers.html#ingredients-for-web-sites)

      - [Шаблоны](https://python-all.ru/3.0/howto/webservers.html#templates)
      - [Постоянное хранение данных](https://python-all.ru/3.0/howto/webservers.html#data-persistence)
    - [Фреймворки](https://python-all.ru/3.0/howto/webservers.html#frameworks)

      - [Некоторые известные фреймворки](https://python-all.ru/3.0/howto/webservers.html#some-notable-frameworks)

        - [Django](https://python-all.ru/3.0/howto/webservers.html#django)
        - [TurboGears](https://python-all.ru/3.0/howto/webservers.html#turbogears)
        - [Другие известные фреймворки](https://python-all.ru/3.0/howto/webservers.html#other-notable-frameworks)
- [Глоссарий](https://python-all.ru/3.0/glossary.html)
- [Об этих документах](https://python-all.ru/3.0/about.html)

  - [Участники документации Python](https://python-all.ru/3.0/about.html#contributors-to-the-python-documentation)
- [Сообщение об ошибках в Python](https://python-all.ru/3.0/bugs.html)
- [Авторские права](https://python-all.ru/3.0/copyright.html)
- [История и лицензия](https://python-all.ru/3.0/license.html)

  - [История программного обеспечения](https://python-all.ru/3.0/license.html#history-of-the-software)
  - [Условия доступа и использования Python](https://python-all.ru/3.0/license.html#terms-and-conditions-for-accessing-or-otherwise-using-python)
  - [Лицензии и благодарности для включённого программного обеспечения](https://python-all.ru/3.0/license.html#licenses-and-acknowledgements-for-incorporated-software)

    - [Вихрь Мерсенна](https://python-all.ru/3.0/license.html#mersenne-twister)
    - [Сокеты](https://python-all.ru/3.0/license.html#sockets)
    - [Управление исключениями с плавающей точкой](https://python-all.ru/3.0/license.html#floating-point-exception-control)
    - [Асинхронные службы сокетов](https://python-all.ru/3.0/license.html#asynchronous-socket-services)
    - [Управление cookie](https://python-all.ru/3.0/license.html#cookie-management)
    - [Профилирование](https://python-all.ru/3.0/license.html#profiling)
    - [Трассировка выполнения](https://python-all.ru/3.0/license.html#execution-tracing)
    - [Функции UUencode и UUdecode](https://python-all.ru/3.0/license.html#uuencode-and-uudecode-functions)
    - [XML-вызовы удалённых процедур](https://python-all.ru/3.0/license.html#xml-remote-procedure-calls)
    - [test\_epoll](https://python-all.ru/3.0/license.html#test-epoll)
    - [Select kqueue](https://python-all.ru/3.0/license.html#select-kqueue)
