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

---

# Стабильность C API и ABI

Если не указано иное, C API Python подпадает под политику обратной совместимости [**PEP 387**](https://python-all.ru/3.15/c-api/stable.html). Большинство изменений в нём совместимы на уровне исходного кода (как правило, только за счёт добавления нового API). Изменение существующего API или его удаление производится только после периода устаревания или для исправления серьёзных проблем.

Двоичный интерфейс приложений (ABI) CPython совместим вперёд и назад в пределах одного минорного выпуска (при условии одинаковой компиляции; см. [Особенности платформ](https://python-all.ru/3.15/c-api/stable.html#stable-abi-platform) ниже). Таким образом, код, скомпилированный для Python 3.10.0, будет работать на 3.10.8 и наоборот, но его потребуется перекомпилировать для 3.9.x и 3.11.x.

Существует два уровня C API с разными ожиданиями стабильности:

- [Нестабильный API](https://python-all.ru/3.15/c-api/stable.html#unstable-c-api), может изменяться в минорных версиях без периода устаревания. Он помечается префиксом `PyUnstable` в именах.
- [Ограниченный API](https://python-all.ru/3.15/c-api/stable.html#limited-c-api), совместим на протяжении нескольких минорных выпусков. Когда определён [`Py_LIMITED_API`](https://python-all.ru/3.15/c-api/stable.html#c.Py_LIMITED_API), из `Python.h` предоставляется только это подмножество.

Они более подробно рассматриваются ниже.

Имена с префиксом подчёркивания, такие как `_Py_InternalState`, являются закрытым API, который может изменяться без уведомления даже в патч-релизах. Если вам необходимо использовать этот API, рассмотрите возможность обращения к [разработчикам CPython](https://python-all.ru/3.15/c-api/stable.html) для обсуждения добавления публичного API для вашего сценария использования.

## Нестабильный C API

Любой API, имя которого начинается с префикса `PyUnstable`, раскрывает детали реализации CPython и может меняться в каждом минорном выпуске (например, с 3.9 до 3.10) без каких-либо предупреждений об устаревании. Однако он не будет меняться в исправляющем выпуске (например, с 3.10.0 до 3.10.1).

Он в основном предназначен для специализированных низкоуровневых инструментов, таких как отладчики.

Ожидается, что проекты, использующие этот API, будут следить за разработкой CPython и прилагать дополнительные усилия для адаптации к изменениям.

## Стабильные двоичные интерфейсы приложений

*Стабильный ABI* Python позволяет расширениям быть совместимыми с несколькими версиями Python без перекомпиляции.

> **Примечание**
>
> Для простоты в этом документе говорится о *расширениях*, но Stable ABI работает одинаково для всех случаев использования API – например, для встраивания Python.

Существует два стабильных ABI:

- `abi3`, представленный в Python 3.2, совместим с **не**-[свободно-поточными](https://python-all.ru/3.15/glossary.html#term-free-threaded-build) сборками CPython.
- `abi3t`, представленный в Python 3.15, совместим с [свободно-поточными](https://python-all.ru/3.15/glossary.html#term-free-threaded-build) сборками CPython. Он имеет более строгие ограничения API, чем `abi3`.

  > Добавлено в версии 3.15: `abi3t` был добавлен в [**PEP 803**](https://python-all.ru/3.15/c-api/stable.html)

Расширение может быть скомпилировано одновременно как для *обоих* `abi3`, так и для `abi3t`; результат будет совместим как со свободно-поточными, так и с не-свободно-поточными сборками Python. В настоящее время это не имеет недостатков по сравнению с компиляцией только для `abi3t`.

Каждый стабильный ABI версионируется с использованием первых двух чисел версии Python. Например, Stable ABI 3.14 соответствует Python 3.14. Расширение, скомпилированное для Stable ABI 3.x, совместимо по ABI с Python 3.x и выше.

Расширения, нацеленные на стабильный ABI, должны использовать только ограниченное подмножество C API. Это подмножество известно как *Ограниченный API*; его содержимое [перечислено ниже](https://python-all.ru/3.15/c-api/stable.html#limited-api-list).

В Windows расширения, использующие стабильный ABI, должны компоноваться с `python3.dll`, а не с версионно-зависимой библиотекой, такой как `python39.dll`. Эта библиотека предоставляет только соответствующие символы.

На некоторых платформах Python ищет и загружает файлы разделяемых библиотек с тегом `abi3` или `abi3t` (например, `mymodule.abi3.so`). [Свободно-поточные](https://python-all.ru/3.15/glossary.html#term-free-threaded-build) интерпретаторы распознают только тег `abi3t`, в то время как несвободно-поточные будут предпочитать `abi3`, но переключаться на `abi3t`. Таким образом, расширения, совместимые с обоими ABI, должны использовать тег `abi3t`.

Python не обязательно проверяет, что загружаемые им расширения имеют совместимый ABI. Авторам расширений рекомендуется добавить проверку с помощью слота [`Py_mod_abi`](https://python-all.ru/3.15/c-api/module.html#c.Py_mod_abi) или функции [`PyABIInfo_Check()`](https://python-all.ru/3.15/c-api/stable.html#c.PyABIInfo_Check), но конечный пользователь (или его инструмент сборки пакетов) несёт ответственность за то, чтобы, например, расширения, собранные для Stable ABI 3.10, не были установлены для более низких версий Python.

Все функции в Stable ABI присутствуют как функции в разделяемой библиотеке Python, а не только как макросы. Это делает их доступными в языках, которые не используют препроцессор C, включая [`ctypes`](https://python-all.ru/3.15/library/ctypes.html#module-ctypes) Python.

### Компиляция для стабильного ABI

> **Примечание**
>
> Инструменты сборки (такие как, например, meson-python, scikit-build-core или Setuptools) часто имеют механизм для установки макросов и их синхронизации с именами файлов расширений и другими метаданными. Если такой механизм существует, предпочтительнее использовать его, а не определять макросы вручную.
>
> Оставшаяся часть раздела в основном предназначена для разработчиков инструментов и тех, кто компилирует расширения вручную.
>
> > **См. также**
> >
> > [список рекомендуемых инструментов](https://python-all.ru/3.15/c-api/stable.html) в Python Packaging User Guide

Чтобы скомпилировать для Stable ABI, определите один или оба следующих макроса, указав самую старую версию Python, которую должно поддерживать ваше расширение, в формате [`Py_PACK_VERSION`](https://python-all.ru/3.15/c-api/apiabiversion.html#c.Py_PACK_VERSION). Обычно выбирают конкретное значение, а не версию заголовочных файлов Python, с которыми выполняется компиляция.

Макросы должны быть определены до включения `Python.h`. Поскольку [`Py_PACK_VERSION`](https://python-all.ru/3.15/c-api/apiabiversion.html#c.Py_PACK_VERSION) на этом этапе недоступен, необходимо напрямую использовать числовое значение. Для справки приведены значения для нескольких последних версий Python:

```c
0x30a0000  /* Py_PACK_VERSION(3,10) */
0x30b0000  /* Py_PACK_VERSION(3,11) */
0x30c0000  /* Py_PACK_VERSION(3,12) */
0x30d0000  /* Py_PACK_VERSION(3,13) */
0x30e0000  /* Py_PACK_VERSION(3,14) */
0x30f0000  /* Py_PACK_VERSION(3,15) */
```

Когда определён один из макросов, `Python.h` будет предоставлять только API, совместимый с заданным Stable ABI – то есть [Limited API](https://python-all.ru/3.15/c-api/stable.html#limited-api-list) плюс некоторые определения, которые должны быть видны компилятору, но не должны использоваться напрямую. Когда определены оба, `Python.h` будет предоставлять API, совместимый с обоими Stable ABI.

#### `Py_LIMITED_API`

Целевой `abi3`, то есть сборки CPython без [свободной многопоточности](https://python-all.ru/3.15/glossary.html#term-free-threaded-build). Общие сведения см. в [выше](https://python-all.ru/3.15/c-api/stable.html#abi3-compiling).

#### `Py_TARGET_ABI3T`

Целевой `abi3t`, то есть [сборки CPython со свободной многопоточностью](https://python-all.ru/3.15/glossary.html#term-free-threaded-build). Общие сведения см. в [выше](https://python-all.ru/3.15/c-api/stable.html#abi3-compiling).

Добавлено в версии 3.15.

Оба макроса задают целевой ABI; разный стиль именования обусловлен обратной совместимостью.

> **Историческая справка**
>
> Можно также определить `Py_LIMITED_API` как `3`. Это работает так же, как `0x03020000` (Python 3.2 – версия, в которой появился Stable ABI).

Когда определены оба, `Python.h` может переопределить `Py_LIMITED_API` в соответствии с `Py_TARGET_ABI3T`, а может и не переопределить.

В [сборке со свободной многопоточностью](https://python-all.ru/3.15/glossary.html#term-free-threaded-build) – то есть когда определён [`Py_GIL_DISABLED`](https://python-all.ru/3.15/using/configure.html#c.Py_GIL_DISABLED) – `Py_TARGET_ABI3T` по умолчанию принимает значение `Py_LIMITED_API`. Это означает, что есть два способа сборки для обоих `abi3` и `abi3t`:

- определить оба `Py_LIMITED_API` и `Py_TARGET_ABI3T`, или
- определить только `Py_LIMITED_API` и:

  - в Windows определить `Py_GIL_DISABLED`;
  - в других системах использовать заголовочные файлы сборки Python со свободной многопоточностью.

### Область применения Stable ABI и производительность

Цель Stable ABI – разрешить всё, что возможно с полным C API, но, возможно, с потерей производительности. В целом совместимость со Stable ABI потребует некоторых изменений в исходном коде расширения.

Например, хотя [`PyList_GetItem()`](https://python-all.ru/3.15/c-api/list.html#c.PyList_GetItem) доступен, его «небезопасный» макрос-вариант [`PyList_GET_ITEM()`](https://python-all.ru/3.15/c-api/list.html#c.PyList_GET_ITEM) – нет. Макрос может быть быстрее, поскольку он может полагаться на версионные детали реализации объекта списка.

Другой пример: при компиляции *не* для Stable ABI некоторые функции C API встраиваются или заменяются макросами. Компиляция для Stable ABI отключает такое встраивание, обеспечивая стабильность по мере улучшения структур данных Python, но возможно снижая производительность.

Если не определять `Py_LIMITED_API` или `Py_TARGET_ABI3T`, можно скомпилировать совместимый со Stable ABI исходный код для версионного ABI. Тогда можно распространять потенциально более быстрое версионное расширение вместе с версией, скомпилированной для Stable ABI – более медленным, но более совместимым запасным вариантом.

### Предостережения о Stable ABI

Обратите внимание: компиляция для Stable ABI *не* является полной гарантией совместимости кода с ожидаемыми версиями Python. Stable ABI предотвращает проблемы с *ABI*, такие как ошибки компоновки из-за отсутствия символов или повреждение данных из-за изменений в структуре или сигнатурах функций. Однако другие изменения в Python могут изменить *поведение* расширений.

Одна из проблем, от которой макросы [`Py_TARGET_ABI3T`](https://python-all.ru/3.15/c-api/stable.html#c.Py_TARGET_ABI3T) и [`Py_LIMITED_API`](https://python-all.ru/3.15/c-api/stable.html#c.Py_LIMITED_API) не защищают, – это вызов функции с аргументами, которые недопустимы в более старой версии Python. Например, рассмотрим функцию, которая начинает принимать `NULL` в качестве аргумента. В Python 3.9 `NULL` теперь выбирает поведение по умолчанию, но в Python 3.8 аргумент будет использоваться напрямую, что приведёт к разыменованию `NULL` и сбою. Аналогичная логика применима к полям структур.

По этим причинам мы рекомендуем тестировать расширение со *всеми* поддерживаемыми минорными версиями Python.

Также рекомендуем просмотреть документацию по всем используемым API, чтобы проверить, входят ли они явно в Limited API. Даже при определённом `Py_LIMITED_API` некоторые частные объявления открываются по техническим причинам (или даже непреднамеренно, как ошибки).

Также учтите: хотя компиляция с `Py_LIMITED_API` 3.8 означает, что расширение должно *загружаться* в Python 3.12 и *компилироваться* с Python 3.12, тот же исходный код не обязательно скомпилируется с `Py_LIMITED_API`, установленным в 3.12. В целом части Limited API могут быть объявлены устаревшими и удалены при условии, что Stable ABI остаётся стабильным.

## Особенности платформ

Стабильность ABI зависит не только от Python, но и от используемого компилятора, низкоуровневых библиотек и параметров компиляции. Для целей [стабильных ABI](https://python-all.ru/3.15/c-api/stable.html#stable-abi) эти детали определяют «платформу». Обычно они зависят от типа ОС и архитектуры процессора.

Ответственность каждого конкретного распространителя Python – обеспечить, чтобы все версии Python на определённой платформе были собраны таким образом, чтобы не нарушать стабильные ABI или версионные ABI. Это справедливо для выпусков Windows и macOS от `python.org` и многих сторонних распространителей.

## Проверка ABI

Добавлено в версии 3.15.

Python включает элементарную проверку совместимости ABI.

Эта проверка не является всеобъемлющей. Она лишь защищает от распространённых случаев установки несовместимых модулей для неподходящего интерпретатора. Она также не учитывает [несовместимости платформ](https://python-all.ru/3.15/c-api/stable.html#stable-abi-platform). Она может быть выполнена только после успешной загрузки расширения.

Несмотря на эти ограничения, рекомендуется, чтобы модули расширений использовали этот механизм, чтобы обнаружимые несовместимости вызывали исключения, а не приводили к краху.

Большинство модулей могут использовать эту проверку через слот [`Py_mod_abi`](https://python-all.ru/3.15/c-api/module.html#c.Py_mod_abi) и макрос [`PyABIInfo_VAR`](https://python-all.ru/3.15/c-api/stable.html#c.PyABIInfo_VAR), например так:

```c
PyABIInfo_VAR(abi_info);

static PyModuleDef_Slot mymodule_slots[] = {
   {Py_mod_abi, &abi_info},
   ...
};
```

Полное API описано ниже для продвинутых случаев использования.

#### `int PyABIInfo_Check(PyABIInfo *info, const char *module_name)`

*Часть [Stable ABI](https://python-all.ru/3.15/c-api/stable.html#stable) начиная с версии 3.15.*

Проверяет, что переданный *info* совместим с текущим запущенным интерпретатором.

Возвращает 0 при успехе. В случае неудачи возбуждает исключение и возвращает -1.

Если ABI несовместим, возбуждённое исключение будет [`ImportError`](https://python-all.ru/3.15/library/exceptions.html#ImportError).

Аргумент *module\_name* может быть `NULL` или указывать на NUL-терминированную строку в кодировке UTF-8, используемую для сообщений об ошибках.

Обратите внимание: если *info* описывает ABI, используемый текущим кодом (как определено [`PyABIInfo_VAR`](https://python-all.ru/3.15/c-api/stable.html#c.PyABIInfo_VAR), например), использование любого другого API Python C может привести к крахам. В частности, небезопасно исследовать возбуждённое исключение.

Добавлено в версии 3.15.

#### `PyABIInfo_VAR(NAME)`

*Часть [Stable ABI](https://python-all.ru/3.15/c-api/stable.html#stable) начиная с версии 3.15.*

Определяет статическую переменную [`PyABIInfo`](https://python-all.ru/3.15/c-api/stable.html#c.PyABIInfo) с заданным *NAME*, которая описывает ABI, который будет использоваться текущим кодом. Этот макрос раскрывается в:

```c
static PyABIInfo NAME = {
    1, 0,
    PyABIInfo_DEFAULT_FLAGS,
    PY_VERSION_HEX,
    PyABIInfo_DEFAULT_ABI_VERSION
}
```

Добавлено в версии 3.15.

#### `type PyABIInfo`

*Часть [Stable ABI](https://python-all.ru/3.15/c-api/stable.html#stable) (включая все члены) начиная с версии 3.15.*

#### `uint8_t abiinfo_major_version`

Главная версия [`PyABIInfo`](https://python-all.ru/3.15/c-api/stable.html#c.PyABIInfo). Может быть установлена в:

- `0` для пропуска всех проверок, или
- `1` для указания этой версии `PyABIInfo`.

#### `uint8_t abiinfo_minor_version`

Минорная версия [`PyABIInfo`](https://python-all.ru/3.15/c-api/stable.html#c.PyABIInfo). Должна быть установлена в `0`; бо́льшие значения зарезервированы для обратно совместимых будущих версий `PyABIInfo`.

#### `uint16_t flags`

Это поле обычно устанавливается в следующий макрос:

#### `PyABIInfo_DEFAULT_FLAGS`

*Часть [Stable ABI](https://python-all.ru/3.15/c-api/stable.html#stable) начиная с версии 3.15.*

Флаги по умолчанию, основанные на текущих значениях макросов, таких как [`Py_LIMITED_API`](https://python-all.ru/3.15/c-api/stable.html#c.Py_LIMITED_API) и [`Py_GIL_DISABLED`](https://python-all.ru/3.15/using/configure.html#c.Py_GIL_DISABLED).

В качестве альтернативы поле может быть установлено в следующие флаги, объединённые поразрядным ИЛИ. Неиспользуемые биты должны быть установлены в ноль.

Вариант ABI – один из:

> #### `PyABIInfo_STABLE`
>
> *Часть [Stable ABI](https://python-all.ru/3.15/c-api/stable.html#stable) начиная с версии 3.15.*
>
> Указывает, что используется стабильный ABI.
>
> #### `PyABIInfo_INTERNAL`
>
> Указывает ABI, специфичный для конкретной сборки CPython. Только для внутреннего использования.

Совместимость со свободной многопоточностью – один из:

> #### `PyABIInfo_FREETHREADED`
>
> *Часть [Stable ABI](https://python-all.ru/3.15/c-api/stable.html#stable) начиная с версии 3.15.*
>
> Указывает ABI, совместимый с [сборками со свободными потоками](https://python-all.ru/3.15/glossary.html#term-free-threaded-build) CPython. (То есть сборками, скомпилированными с [`--disable-gil`](https://python-all.ru/3.15/using/configure.html#cmdoption-disable-gil); с `t` в [`sys.abiflags`](https://python-all.ru/3.15/library/sys.html#sys.abiflags))
>
> #### `PyABIInfo_GIL`
>
> *Часть [Stable ABI](https://python-all.ru/3.15/c-api/stable.html#stable) начиная с версии 3.15.*
>
> Указывает ABI, совместимый со сборками CPython без свободных потоков (то есть сборками, скомпилированными *без* [`--disable-gil`](https://python-all.ru/3.15/using/configure.html#cmdoption-disable-gil)).
>
> #### `PyABIInfo_FREETHREADING_AGNOSTIC`
>
> *Часть [Stable ABI](https://python-all.ru/3.15/c-api/stable.html#stable) начиная с версии 3.15.*
>
> Указывает ABI, совместимый как со сборками со свободными потоками, так и со сборками без свободных потоков CPython, то есть как с `abi3`, так и с `abi3t`.

#### `uint32_t build_version`

Версия заголовочных файлов Python, использованных для сборки кода, в формате, используемом в [`PY_VERSION_HEX`](https://python-all.ru/3.15/c-api/apiabiversion.html#c.PY_VERSION_HEX).

Это поле можно установить в `0`, чтобы пропустить любые проверки, связанные с этим полем. Эта опция предназначена в основном для проектов, которые не используют заголовочные файлы CPython напрямую и не эмулируют какую-либо конкретную их версию.

#### `uint32_t abi_version`

Версия ABI.

Для Stable ABI это поле должно быть установлено в значение [`Py_LIMITED_API`](https://python-all.ru/3.15/c-api/stable.html#c.Py_LIMITED_API) или [`Py_TARGET_ABI3T`](https://python-all.ru/3.15/c-api/stable.html#c.Py_TARGET_ABI3T). Если оба определены, используйте меньшее значение. (Если `Py_LIMITED_API` равно `3`; используйте [Py\_PACK\_VERSION](https://python-all.ru/3.15/c-api/apiabiversion.html#c.Py_PACK_VERSION)(3, 2) вместо `3`.)

В противном случае, его следует установить в [`PY_VERSION_HEX`](https://python-all.ru/3.15/c-api/apiabiversion.html#c.PY_VERSION_HEX).

Его также можно установить в `0`, чтобы пропустить любые проверки, связанные с этим полем.

#### `PyABIInfo_DEFAULT_ABI_VERSION`

*Часть [Stable ABI](https://python-all.ru/3.15/c-api/stable.html#stable) начиная с версии 3.15.*

Значение, которое следует использовать для этого поля, на основе текущих значений макросов, таких как [`Py_LIMITED_API`](https://python-all.ru/3.15/c-api/stable.html#c.Py_LIMITED_API), [`PY_VERSION_HEX`](https://python-all.ru/3.15/c-api/apiabiversion.html#c.PY_VERSION_HEX) и [`Py_GIL_DISABLED`](https://python-all.ru/3.15/using/configure.html#c.Py_GIL_DISABLED).

Добавлено в версии 3.15.

## Содержание Limited API

Это окончательный список [Limited API](https://python-all.ru/3.15/c-api/stable.html#limited-c-api) для Python 3.15:

- [`METH_CLASS`](https://python-all.ru/3.15/c-api/structures.html#c.METH_CLASS)
- [`METH_COEXIST`](https://python-all.ru/3.15/c-api/structures.html#c.METH_COEXIST)
- [`METH_FASTCALL`](https://python-all.ru/3.15/c-api/structures.html#c.METH_FASTCALL)
- [`METH_METHOD`](https://python-all.ru/3.15/c-api/structures.html#c.METH_METHOD)
- [`METH_NOARGS`](https://python-all.ru/3.15/c-api/structures.html#c.METH_NOARGS)
- [`METH_O`](https://python-all.ru/3.15/c-api/structures.html#c.METH_O)
- [`METH_STATIC`](https://python-all.ru/3.15/c-api/structures.html#c.METH_STATIC)
- [`METH_VARARGS`](https://python-all.ru/3.15/c-api/structures.html#c.METH_VARARGS)
- [`PY_VECTORCALL_ARGUMENTS_OFFSET`](https://python-all.ru/3.15/c-api/call.html#c.PY_VECTORCALL_ARGUMENTS_OFFSET)
- [`PyABIInfo`](https://python-all.ru/3.15/c-api/stable.html#c.PyABIInfo)
- [`PyABIInfo_Check()`](https://python-all.ru/3.15/c-api/stable.html#c.PyABIInfo_Check)
- [`PyABIInfo_DEFAULT_ABI_VERSION`](https://python-all.ru/3.15/c-api/stable.html#c.PyABIInfo_DEFAULT_ABI_VERSION)
- [`PyABIInfo_DEFAULT_FLAGS`](https://python-all.ru/3.15/c-api/stable.html#c.PyABIInfo_DEFAULT_FLAGS)
- [`PyABIInfo_FREETHREADED`](https://python-all.ru/3.15/c-api/stable.html#c.PyABIInfo_FREETHREADED)
- [`PyABIInfo_FREETHREADING_AGNOSTIC`](https://python-all.ru/3.15/c-api/stable.html#c.PyABIInfo_FREETHREADING_AGNOSTIC)
- [`PyABIInfo_GIL`](https://python-all.ru/3.15/c-api/stable.html#c.PyABIInfo_GIL)
- [`PyABIInfo_STABLE`](https://python-all.ru/3.15/c-api/stable.html#c.PyABIInfo_STABLE)
- [`PyABIInfo_VAR`](https://python-all.ru/3.15/c-api/stable.html#c.PyABIInfo_VAR)
- [`PyAIter_Check()`](https://python-all.ru/3.15/c-api/iter.html#c.PyAIter_Check)
- [`PyArg_Parse()`](https://python-all.ru/3.15/c-api/arg.html#c.PyArg_Parse)
- [`PyArg_ParseTuple()`](https://python-all.ru/3.15/c-api/arg.html#c.PyArg_ParseTuple)
- [`PyArg_ParseTupleAndKeywords()`](https://python-all.ru/3.15/c-api/arg.html#c.PyArg_ParseTupleAndKeywords)
- [`PyArg_UnpackTuple()`](https://python-all.ru/3.15/c-api/arg.html#c.PyArg_UnpackTuple)
- [`PyArg_VaParse()`](https://python-all.ru/3.15/c-api/arg.html#c.PyArg_VaParse)
- [`PyArg_VaParseTupleAndKeywords()`](https://python-all.ru/3.15/c-api/arg.html#c.PyArg_VaParseTupleAndKeywords)
- [`PyArg_ValidateKeywordArguments()`](https://python-all.ru/3.15/c-api/arg.html#c.PyArg_ValidateKeywordArguments)
- [`PyBUF_ANY_CONTIGUOUS`](https://python-all.ru/3.15/c-api/buffer.html#c.PyBUF_ANY_CONTIGUOUS)
- [`PyBUF_CONTIG`](https://python-all.ru/3.15/c-api/buffer.html#c.PyBUF_CONTIG)
- [`PyBUF_CONTIG_RO`](https://python-all.ru/3.15/c-api/buffer.html#c.PyBUF_CONTIG_RO)
- [`PyBUF_C_CONTIGUOUS`](https://python-all.ru/3.15/c-api/buffer.html#c.PyBUF_C_CONTIGUOUS)
- [`PyBUF_FORMAT`](https://python-all.ru/3.15/c-api/buffer.html#c.PyBUF_FORMAT)
- [`PyBUF_FULL`](https://python-all.ru/3.15/c-api/buffer.html#c.PyBUF_FULL)
- [`PyBUF_FULL_RO`](https://python-all.ru/3.15/c-api/buffer.html#c.PyBUF_FULL_RO)
- [`PyBUF_F_CONTIGUOUS`](https://python-all.ru/3.15/c-api/buffer.html#c.PyBUF_F_CONTIGUOUS)
- [`PyBUF_INDIRECT`](https://python-all.ru/3.15/c-api/buffer.html#c.PyBUF_INDIRECT)
- [`PyBUF_MAX_NDIM`](https://python-all.ru/3.15/c-api/buffer.html#c.PyBUF_MAX_NDIM)
- [`PyBUF_ND`](https://python-all.ru/3.15/c-api/buffer.html#c.PyBUF_ND)
- [`PyBUF_READ`](https://python-all.ru/3.15/c-api/memoryview.html#c.PyBUF_READ)
- [`PyBUF_RECORDS`](https://python-all.ru/3.15/c-api/buffer.html#c.PyBUF_RECORDS)
- [`PyBUF_RECORDS_RO`](https://python-all.ru/3.15/c-api/buffer.html#c.PyBUF_RECORDS_RO)
- [`PyBUF_SIMPLE`](https://python-all.ru/3.15/c-api/buffer.html#c.PyBUF_SIMPLE)
- [`PyBUF_STRIDED`](https://python-all.ru/3.15/c-api/buffer.html#c.PyBUF_STRIDED)
- [`PyBUF_STRIDED_RO`](https://python-all.ru/3.15/c-api/buffer.html#c.PyBUF_STRIDED_RO)
- [`PyBUF_STRIDES`](https://python-all.ru/3.15/c-api/buffer.html#c.PyBUF_STRIDES)
- [`PyBUF_WRITABLE`](https://python-all.ru/3.15/c-api/buffer.html#c.PyBUF_WRITABLE)
- [`PyBUF_WRITE`](https://python-all.ru/3.15/c-api/memoryview.html#c.PyBUF_WRITE)
- [`PyBaseObject_Type`](https://python-all.ru/3.15/c-api/structures.html#c.PyBaseObject_Type)
- [`PyBool_FromLong()`](https://python-all.ru/3.15/c-api/bool.html#c.PyBool_FromLong)
- [`PyBool_Type`](https://python-all.ru/3.15/c-api/bool.html#c.PyBool_Type)
- [`PyBuffer_FillContiguousStrides()`](https://python-all.ru/3.15/c-api/buffer.html#c.PyBuffer_FillContiguousStrides)
- [`PyBuffer_FillInfo()`](https://python-all.ru/3.15/c-api/buffer.html#c.PyBuffer_FillInfo)
- [`PyBuffer_FromContiguous()`](https://python-all.ru/3.15/c-api/buffer.html#c.PyBuffer_FromContiguous)
- [`PyBuffer_GetPointer()`](https://python-all.ru/3.15/c-api/buffer.html#c.PyBuffer_GetPointer)
- [`PyBuffer_IsContiguous()`](https://python-all.ru/3.15/c-api/buffer.html#c.PyBuffer_IsContiguous)
- [`PyBuffer_Release()`](https://python-all.ru/3.15/c-api/buffer.html#c.PyBuffer_Release)
- [`PyBuffer_SizeFromFormat()`](https://python-all.ru/3.15/c-api/buffer.html#c.PyBuffer_SizeFromFormat)
- [`PyBuffer_ToContiguous()`](https://python-all.ru/3.15/c-api/buffer.html#c.PyBuffer_ToContiguous)
- [`PyByteArrayIter_Type`](https://python-all.ru/3.15/c-api/iterator.html#c.PyByteArrayIter_Type)
- [`PyByteArray_AsString()`](https://python-all.ru/3.15/c-api/bytearray.html#c.PyByteArray_AsString)
- [`PyByteArray_Concat()`](https://python-all.ru/3.15/c-api/bytearray.html#c.PyByteArray_Concat)
- [`PyByteArray_FromObject()`](https://python-all.ru/3.15/c-api/bytearray.html#c.PyByteArray_FromObject)
- [`PyByteArray_FromStringAndSize()`](https://python-all.ru/3.15/c-api/bytearray.html#c.PyByteArray_FromStringAndSize)
- [`PyByteArray_Resize()`](https://python-all.ru/3.15/c-api/bytearray.html#c.PyByteArray_Resize)
- [`PyByteArray_Size()`](https://python-all.ru/3.15/c-api/bytearray.html#c.PyByteArray_Size)
- [`PyByteArray_Type`](https://python-all.ru/3.15/c-api/bytearray.html#c.PyByteArray_Type)
- [`PyBytesIter_Type`](https://python-all.ru/3.15/c-api/iterator.html#c.PyBytesIter_Type)
- [`PyBytes_AsString()`](https://python-all.ru/3.15/c-api/bytes.html#c.PyBytes_AsString)
- [`PyBytes_AsStringAndSize()`](https://python-all.ru/3.15/c-api/bytes.html#c.PyBytes_AsStringAndSize)
- [`PyBytes_Concat()`](https://python-all.ru/3.15/c-api/bytes.html#c.PyBytes_Concat)
- [`PyBytes_ConcatAndDel()`](https://python-all.ru/3.15/c-api/bytes.html#c.PyBytes_ConcatAndDel)
- [`PyBytes_DecodeEscape()`](https://python-all.ru/3.15/c-api/bytes.html#c.PyBytes_DecodeEscape)
- [`PyBytes_FromFormat()`](https://python-all.ru/3.15/c-api/bytes.html#c.PyBytes_FromFormat)
- [`PyBytes_FromFormatV()`](https://python-all.ru/3.15/c-api/bytes.html#c.PyBytes_FromFormatV)
- [`PyBytes_FromObject()`](https://python-all.ru/3.15/c-api/bytes.html#c.PyBytes_FromObject)
- [`PyBytes_FromString()`](https://python-all.ru/3.15/c-api/bytes.html#c.PyBytes_FromString)
- [`PyBytes_FromStringAndSize()`](https://python-all.ru/3.15/c-api/bytes.html#c.PyBytes_FromStringAndSize)
- [`PyBytes_Repr()`](https://python-all.ru/3.15/c-api/bytes.html#c.PyBytes_Repr)
- [`PyBytes_Size()`](https://python-all.ru/3.15/c-api/bytes.html#c.PyBytes_Size)
- [`PyBytes_Type`](https://python-all.ru/3.15/c-api/bytes.html#c.PyBytes_Type)
- [`PyCFunction`](https://python-all.ru/3.15/c-api/structures.html#c.PyCFunction)
- [`PyCFunctionFast`](https://python-all.ru/3.15/c-api/structures.html#c.PyCFunctionFast)
- [`PyCFunctionFastWithKeywords`](https://python-all.ru/3.15/c-api/structures.html#c.PyCFunctionFastWithKeywords)
- [`PyCFunctionWithKeywords`](https://python-all.ru/3.15/c-api/structures.html#c.PyCFunctionWithKeywords)
- [`PyCFunction_GetFlags()`](https://python-all.ru/3.15/c-api/structures.html#c.PyCFunction_GetFlags)
- [`PyCFunction_GetFunction()`](https://python-all.ru/3.15/c-api/structures.html#c.PyCFunction_GetFunction)
- [`PyCFunction_GetSelf()`](https://python-all.ru/3.15/c-api/structures.html#c.PyCFunction_GetSelf)
- [`PyCFunction_New()`](https://python-all.ru/3.15/c-api/structures.html#c.PyCFunction_New)
- [`PyCFunction_NewEx()`](https://python-all.ru/3.15/c-api/structures.html#c.PyCFunction_NewEx)
- [`PyCFunction_Type`](https://python-all.ru/3.15/c-api/structures.html#c.PyCFunction_Type)
- [`PyCMethod_New()`](https://python-all.ru/3.15/c-api/structures.html#c.PyCMethod_New)
- [`PyCallIter_New()`](https://python-all.ru/3.15/c-api/iterator.html#c.PyCallIter_New)
- [`PyCallIter_Type`](https://python-all.ru/3.15/c-api/iterator.html#c.PyCallIter_Type)
- [`PyCallable_Check()`](https://python-all.ru/3.15/c-api/call.html#c.PyCallable_Check)
- [`PyCapsule_Destructor`](https://python-all.ru/3.15/c-api/capsule.html#c.PyCapsule_Destructor)
- [`PyCapsule_GetContext()`](https://python-all.ru/3.15/c-api/capsule.html#c.PyCapsule_GetContext)
- [`PyCapsule_GetDestructor()`](https://python-all.ru/3.15/c-api/capsule.html#c.PyCapsule_GetDestructor)
- [`PyCapsule_GetName()`](https://python-all.ru/3.15/c-api/capsule.html#c.PyCapsule_GetName)
- [`PyCapsule_GetPointer()`](https://python-all.ru/3.15/c-api/capsule.html#c.PyCapsule_GetPointer)
- [`PyCapsule_Import()`](https://python-all.ru/3.15/c-api/capsule.html#c.PyCapsule_Import)
- [`PyCapsule_IsValid()`](https://python-all.ru/3.15/c-api/capsule.html#c.PyCapsule_IsValid)
- [`PyCapsule_New()`](https://python-all.ru/3.15/c-api/capsule.html#c.PyCapsule_New)
- [`PyCapsule_SetContext()`](https://python-all.ru/3.15/c-api/capsule.html#c.PyCapsule_SetContext)
- [`PyCapsule_SetDestructor()`](https://python-all.ru/3.15/c-api/capsule.html#c.PyCapsule_SetDestructor)
- [`PyCapsule_SetName()`](https://python-all.ru/3.15/c-api/capsule.html#c.PyCapsule_SetName)
- [`PyCapsule_SetPointer()`](https://python-all.ru/3.15/c-api/capsule.html#c.PyCapsule_SetPointer)
- [`PyCapsule_Type`](https://python-all.ru/3.15/c-api/capsule.html#c.PyCapsule_Type)
- [`PyClassMethodDescr_Type`](https://python-all.ru/3.15/c-api/descriptor.html#c.PyClassMethodDescr_Type)
- [`PyCodec_BackslashReplaceErrors()`](https://python-all.ru/3.15/c-api/codec.html#c.PyCodec_BackslashReplaceErrors)
- [`PyCodec_Decode()`](https://python-all.ru/3.15/c-api/codec.html#c.PyCodec_Decode)
- [`PyCodec_Decoder()`](https://python-all.ru/3.15/c-api/codec.html#c.PyCodec_Decoder)
- [`PyCodec_Encode()`](https://python-all.ru/3.15/c-api/codec.html#c.PyCodec_Encode)
- [`PyCodec_Encoder()`](https://python-all.ru/3.15/c-api/codec.html#c.PyCodec_Encoder)
- [`PyCodec_IgnoreErrors()`](https://python-all.ru/3.15/c-api/codec.html#c.PyCodec_IgnoreErrors)
- [`PyCodec_IncrementalDecoder()`](https://python-all.ru/3.15/c-api/codec.html#c.PyCodec_IncrementalDecoder)
- [`PyCodec_IncrementalEncoder()`](https://python-all.ru/3.15/c-api/codec.html#c.PyCodec_IncrementalEncoder)
- [`PyCodec_KnownEncoding()`](https://python-all.ru/3.15/c-api/codec.html#c.PyCodec_KnownEncoding)
- [`PyCodec_LookupError()`](https://python-all.ru/3.15/c-api/codec.html#c.PyCodec_LookupError)
- [`PyCodec_NameReplaceErrors()`](https://python-all.ru/3.15/c-api/codec.html#c.PyCodec_NameReplaceErrors)
- [`PyCodec_Register()`](https://python-all.ru/3.15/c-api/codec.html#c.PyCodec_Register)
- [`PyCodec_RegisterError()`](https://python-all.ru/3.15/c-api/codec.html#c.PyCodec_RegisterError)
- [`PyCodec_ReplaceErrors()`](https://python-all.ru/3.15/c-api/codec.html#c.PyCodec_ReplaceErrors)
- [`PyCodec_StreamReader()`](https://python-all.ru/3.15/c-api/codec.html#c.PyCodec_StreamReader)
- [`PyCodec_StreamWriter()`](https://python-all.ru/3.15/c-api/codec.html#c.PyCodec_StreamWriter)
- [`PyCodec_StrictErrors()`](https://python-all.ru/3.15/c-api/codec.html#c.PyCodec_StrictErrors)
- [`PyCodec_Unregister()`](https://python-all.ru/3.15/c-api/codec.html#c.PyCodec_Unregister)
- [`PyCodec_XMLCharRefReplaceErrors()`](https://python-all.ru/3.15/c-api/codec.html#c.PyCodec_XMLCharRefReplaceErrors)
- [`PyComplex_FromDoubles()`](https://python-all.ru/3.15/c-api/complex.html#c.PyComplex_FromDoubles)
- [`PyComplex_ImagAsDouble()`](https://python-all.ru/3.15/c-api/complex.html#c.PyComplex_ImagAsDouble)
- [`PyComplex_RealAsDouble()`](https://python-all.ru/3.15/c-api/complex.html#c.PyComplex_RealAsDouble)
- [`PyComplex_Type`](https://python-all.ru/3.15/c-api/complex.html#c.PyComplex_Type)
- [`PyCriticalSection`](https://python-all.ru/3.15/c-api/synchronization.html#c.PyCriticalSection)
- [`PyCriticalSection2`](https://python-all.ru/3.15/c-api/synchronization.html#c.PyCriticalSection2)
- [`PyCriticalSection2_Begin()`](https://python-all.ru/3.15/c-api/synchronization.html#c.PyCriticalSection2_Begin)
- [`PyCriticalSection2_End()`](https://python-all.ru/3.15/c-api/synchronization.html#c.PyCriticalSection2_End)
- [`PyCriticalSection_Begin()`](https://python-all.ru/3.15/c-api/synchronization.html#c.PyCriticalSection_Begin)
- [`PyCriticalSection_End()`](https://python-all.ru/3.15/c-api/synchronization.html#c.PyCriticalSection_End)
- [`PyDescr_NewClassMethod()`](https://python-all.ru/3.15/c-api/descriptor.html#c.PyDescr_NewClassMethod)
- [`PyDescr_NewGetSet()`](https://python-all.ru/3.15/c-api/descriptor.html#c.PyDescr_NewGetSet)
- [`PyDescr_NewMember()`](https://python-all.ru/3.15/c-api/descriptor.html#c.PyDescr_NewMember)
- [`PyDescr_NewMethod()`](https://python-all.ru/3.15/c-api/descriptor.html#c.PyDescr_NewMethod)
- [`PyDictItems_Type`](https://python-all.ru/3.15/c-api/dict.html#c.PyDictItems_Type)
- [`PyDictIterItem_Type`](https://python-all.ru/3.15/c-api/iterator.html#c.PyDictIterItem_Type)
- [`PyDictIterKey_Type`](https://python-all.ru/3.15/c-api/iterator.html#c.PyDictIterKey_Type)
- [`PyDictIterValue_Type`](https://python-all.ru/3.15/c-api/iterator.html#c.PyDictIterValue_Type)
- [`PyDictKeys_Type`](https://python-all.ru/3.15/c-api/dict.html#c.PyDictKeys_Type)
- [`PyDictProxy_New()`](https://python-all.ru/3.15/c-api/dict.html#c.PyDictProxy_New)
- [`PyDictProxy_Type`](https://python-all.ru/3.15/c-api/dict.html#c.PyDictProxy_Type)
- [`PyDictRevIterItem_Type`](https://python-all.ru/3.15/c-api/iterator.html#c.PyDictRevIterItem_Type)
- [`PyDictRevIterKey_Type`](https://python-all.ru/3.15/c-api/iterator.html#c.PyDictRevIterKey_Type)
- [`PyDictRevIterValue_Type`](https://python-all.ru/3.15/c-api/iterator.html#c.PyDictRevIterValue_Type)
- [`PyDictValues_Type`](https://python-all.ru/3.15/c-api/dict.html#c.PyDictValues_Type)
- [`PyDict_Clear()`](https://python-all.ru/3.15/c-api/dict.html#c.PyDict_Clear)
- [`PyDict_Contains()`](https://python-all.ru/3.15/c-api/dict.html#c.PyDict_Contains)
- [`PyDict_Copy()`](https://python-all.ru/3.15/c-api/dict.html#c.PyDict_Copy)
- [`PyDict_DelItem()`](https://python-all.ru/3.15/c-api/dict.html#c.PyDict_DelItem)
- [`PyDict_DelItemString()`](https://python-all.ru/3.15/c-api/dict.html#c.PyDict_DelItemString)
- [`PyDict_GetItem()`](https://python-all.ru/3.15/c-api/dict.html#c.PyDict_GetItem)
- [`PyDict_GetItemRef()`](https://python-all.ru/3.15/c-api/dict.html#c.PyDict_GetItemRef)
- [`PyDict_GetItemString()`](https://python-all.ru/3.15/c-api/dict.html#c.PyDict_GetItemString)
- [`PyDict_GetItemStringRef()`](https://python-all.ru/3.15/c-api/dict.html#c.PyDict_GetItemStringRef)
- [`PyDict_GetItemWithError()`](https://python-all.ru/3.15/c-api/dict.html#c.PyDict_GetItemWithError)
- [`PyDict_Items()`](https://python-all.ru/3.15/c-api/dict.html#c.PyDict_Items)
- [`PyDict_Keys()`](https://python-all.ru/3.15/c-api/dict.html#c.PyDict_Keys)
- [`PyDict_Merge()`](https://python-all.ru/3.15/c-api/dict.html#c.PyDict_Merge)
- [`PyDict_MergeFromSeq2()`](https://python-all.ru/3.15/c-api/dict.html#c.PyDict_MergeFromSeq2)
- [`PyDict_New()`](https://python-all.ru/3.15/c-api/dict.html#c.PyDict_New)
- [`PyDict_Next()`](https://python-all.ru/3.15/c-api/dict.html#c.PyDict_Next)
- [`PyDict_SetDefaultRef()`](https://python-all.ru/3.15/c-api/dict.html#c.PyDict_SetDefaultRef)
- [`PyDict_SetItem()`](https://python-all.ru/3.15/c-api/dict.html#c.PyDict_SetItem)
- [`PyDict_SetItemString()`](https://python-all.ru/3.15/c-api/dict.html#c.PyDict_SetItemString)
- [`PyDict_Size()`](https://python-all.ru/3.15/c-api/dict.html#c.PyDict_Size)
- [`PyDict_Type`](https://python-all.ru/3.15/c-api/dict.html#c.PyDict_Type)
- [`PyDict_Update()`](https://python-all.ru/3.15/c-api/dict.html#c.PyDict_Update)
- [`PyDict_Values()`](https://python-all.ru/3.15/c-api/dict.html#c.PyDict_Values)
- [`PyEllipsis_Type`](https://python-all.ru/3.15/c-api/slice.html#c.PyEllipsis_Type)
- [`PyEnum_Type`](https://python-all.ru/3.15/c-api/iterator.html#c.PyEnum_Type)
- [`PyErr_BadArgument()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_BadArgument)
- [`PyErr_BadInternalCall()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_BadInternalCall)
- [`PyErr_CheckSignals()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_CheckSignals)
- [`PyErr_Clear()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_Clear)
- `PyErr_Display()`
- [`PyErr_DisplayException()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_DisplayException)
- [`PyErr_ExceptionMatches()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_ExceptionMatches)
- [`PyErr_Fetch()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_Fetch)
- [`PyErr_Format()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_Format)
- [`PyErr_FormatV()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_FormatV)
- [`PyErr_GetExcInfo()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_GetExcInfo)
- [`PyErr_GetHandledException()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_GetHandledException)
- [`PyErr_GetRaisedException()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_GetRaisedException)
- [`PyErr_GivenExceptionMatches()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_GivenExceptionMatches)
- [`PyErr_NewException()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_NewException)
- [`PyErr_NewExceptionWithDoc()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_NewExceptionWithDoc)
- [`PyErr_NoMemory()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_NoMemory)
- [`PyErr_NormalizeException()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_NormalizeException)
- [`PyErr_Occurred()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_Occurred)
- [`PyErr_Print()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_Print)
- [`PyErr_PrintEx()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_PrintEx)
- [`PyErr_ProgramText()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_ProgramText)
- [`PyErr_ResourceWarning()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_ResourceWarning)
- [`PyErr_Restore()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_Restore)
- [`PyErr_SetExcFromWindowsErr()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_SetExcFromWindowsErr)
- [`PyErr_SetExcFromWindowsErrWithFilename()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_SetExcFromWindowsErrWithFilename)
- [`PyErr_SetExcFromWindowsErrWithFilenameObject()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_SetExcFromWindowsErrWithFilenameObject)
- [`PyErr_SetExcFromWindowsErrWithFilenameObjects()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_SetExcFromWindowsErrWithFilenameObjects)
- [`PyErr_SetExcInfo()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_SetExcInfo)
- [`PyErr_SetFromErrno()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_SetFromErrno)
- [`PyErr_SetFromErrnoWithFilename()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_SetFromErrnoWithFilename)
- [`PyErr_SetFromErrnoWithFilenameObject()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_SetFromErrnoWithFilenameObject)
- [`PyErr_SetFromErrnoWithFilenameObjects()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_SetFromErrnoWithFilenameObjects)
- [`PyErr_SetFromWindowsErr()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_SetFromWindowsErr)
- [`PyErr_SetFromWindowsErrWithFilename()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_SetFromWindowsErrWithFilename)
- [`PyErr_SetHandledException()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_SetHandledException)
- [`PyErr_SetImportError()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_SetImportError)
- [`PyErr_SetImportErrorSubclass()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_SetImportErrorSubclass)
- [`PyErr_SetInterrupt()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_SetInterrupt)
- [`PyErr_SetInterruptEx()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_SetInterruptEx)
- [`PyErr_SetNone()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_SetNone)
- [`PyErr_SetObject()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_SetObject)
- [`PyErr_SetRaisedException()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_SetRaisedException)
- [`PyErr_SetString()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_SetString)
- [`PyErr_SyntaxLocation()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_SyntaxLocation)
- [`PyErr_SyntaxLocationEx()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_SyntaxLocationEx)
- [`PyErr_WarnEx()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_WarnEx)
- [`PyErr_WarnExplicit()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_WarnExplicit)
- [`PyErr_WarnFormat()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_WarnFormat)
- [`PyErr_WriteUnraisable()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyErr_WriteUnraisable)
- [`PyEval_AcquireThread()`](https://python-all.ru/3.15/c-api/threads.html#c.PyEval_AcquireThread)
- [`PyEval_EvalCode()`](https://python-all.ru/3.15/c-api/veryhigh.html#c.PyEval_EvalCode)
- [`PyEval_EvalCodeEx()`](https://python-all.ru/3.15/c-api/veryhigh.html#c.PyEval_EvalCodeEx)
- [`PyEval_EvalFrame()`](https://python-all.ru/3.15/c-api/veryhigh.html#c.PyEval_EvalFrame)
- [`PyEval_EvalFrameEx()`](https://python-all.ru/3.15/c-api/veryhigh.html#c.PyEval_EvalFrameEx)
- [`PyEval_GetBuiltins()`](https://python-all.ru/3.15/c-api/reflection.html#c.PyEval_GetBuiltins)
- [`PyEval_GetFrame()`](https://python-all.ru/3.15/c-api/reflection.html#c.PyEval_GetFrame)
- [`PyEval_GetFrameBuiltins()`](https://python-all.ru/3.15/c-api/reflection.html#c.PyEval_GetFrameBuiltins)
- [`PyEval_GetFrameGlobals()`](https://python-all.ru/3.15/c-api/reflection.html#c.PyEval_GetFrameGlobals)
- [`PyEval_GetFrameLocals()`](https://python-all.ru/3.15/c-api/reflection.html#c.PyEval_GetFrameLocals)
- [`PyEval_GetFuncDesc()`](https://python-all.ru/3.15/c-api/reflection.html#c.PyEval_GetFuncDesc)
- [`PyEval_GetFuncName()`](https://python-all.ru/3.15/c-api/reflection.html#c.PyEval_GetFuncName)
- [`PyEval_GetGlobals()`](https://python-all.ru/3.15/c-api/reflection.html#c.PyEval_GetGlobals)
- [`PyEval_GetLocals()`](https://python-all.ru/3.15/c-api/reflection.html#c.PyEval_GetLocals)
- [`PyEval_InitThreads()`](https://python-all.ru/3.15/c-api/threads.html#c.PyEval_InitThreads)
- [`PyEval_ReleaseThread()`](https://python-all.ru/3.15/c-api/threads.html#c.PyEval_ReleaseThread)
- [`PyEval_RestoreThread()`](https://python-all.ru/3.15/c-api/threads.html#c.PyEval_RestoreThread)
- [`PyEval_SaveThread()`](https://python-all.ru/3.15/c-api/threads.html#c.PyEval_SaveThread)
- [`PyExc_ArithmeticError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_ArithmeticError)
- [`PyExc_AssertionError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_AssertionError)
- [`PyExc_AttributeError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_AttributeError)
- [`PyExc_BaseException`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_BaseException)
- [`PyExc_BaseExceptionGroup`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_BaseExceptionGroup)
- [`PyExc_BlockingIOError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_BlockingIOError)
- [`PyExc_BrokenPipeError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_BrokenPipeError)
- [`PyExc_BufferError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_BufferError)
- [`PyExc_BytesWarning`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_BytesWarning)
- [`PyExc_ChildProcessError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_ChildProcessError)
- [`PyExc_ConnectionAbortedError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_ConnectionAbortedError)
- [`PyExc_ConnectionError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_ConnectionError)
- [`PyExc_ConnectionRefusedError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_ConnectionRefusedError)
- [`PyExc_ConnectionResetError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_ConnectionResetError)
- [`PyExc_DeprecationWarning`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_DeprecationWarning)
- [`PyExc_EOFError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_EOFError)
- [`PyExc_EncodingWarning`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_EncodingWarning)
- [`PyExc_EnvironmentError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_EnvironmentError)
- [`PyExc_Exception`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_Exception)
- [`PyExc_FileExistsError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_FileExistsError)
- [`PyExc_FileNotFoundError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_FileNotFoundError)
- [`PyExc_FloatingPointError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_FloatingPointError)
- [`PyExc_FutureWarning`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_FutureWarning)
- [`PyExc_GeneratorExit`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_GeneratorExit)
- [`PyExc_IOError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_IOError)
- [`PyExc_ImportError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_ImportError)
- [`PyExc_ImportWarning`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_ImportWarning)
- [`PyExc_IndentationError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_IndentationError)
- [`PyExc_IndexError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_IndexError)
- [`PyExc_InterruptedError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_InterruptedError)
- [`PyExc_IsADirectoryError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_IsADirectoryError)
- [`PyExc_KeyError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_KeyError)
- [`PyExc_KeyboardInterrupt`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_KeyboardInterrupt)
- [`PyExc_LookupError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_LookupError)
- [`PyExc_MemoryError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_MemoryError)
- [`PyExc_ModuleNotFoundError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_ModuleNotFoundError)
- [`PyExc_NameError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_NameError)
- [`PyExc_NotADirectoryError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_NotADirectoryError)
- [`PyExc_NotImplementedError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_NotImplementedError)
- [`PyExc_OSError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_OSError)
- [`PyExc_OverflowError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_OverflowError)
- [`PyExc_PendingDeprecationWarning`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_PendingDeprecationWarning)
- [`PyExc_PermissionError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_PermissionError)
- [`PyExc_ProcessLookupError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_ProcessLookupError)
- [`PyExc_RecursionError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_RecursionError)
- [`PyExc_ReferenceError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_ReferenceError)
- [`PyExc_ResourceWarning`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_ResourceWarning)
- [`PyExc_RuntimeError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_RuntimeError)
- [`PyExc_RuntimeWarning`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_RuntimeWarning)
- [`PyExc_StopAsyncIteration`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_StopAsyncIteration)
- [`PyExc_StopIteration`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_StopIteration)
- [`PyExc_SyntaxError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_SyntaxError)
- [`PyExc_SyntaxWarning`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_SyntaxWarning)
- [`PyExc_SystemError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_SystemError)
- [`PyExc_SystemExit`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_SystemExit)
- [`PyExc_TabError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_TabError)
- [`PyExc_TimeoutError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_TimeoutError)
- [`PyExc_TypeError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_TypeError)
- [`PyExc_UnboundLocalError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_UnboundLocalError)
- [`PyExc_UnicodeDecodeError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_UnicodeDecodeError)
- [`PyExc_UnicodeEncodeError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_UnicodeEncodeError)
- [`PyExc_UnicodeError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_UnicodeError)
- [`PyExc_UnicodeTranslateError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_UnicodeTranslateError)
- [`PyExc_UnicodeWarning`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_UnicodeWarning)
- [`PyExc_UserWarning`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_UserWarning)
- [`PyExc_ValueError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_ValueError)
- [`PyExc_Warning`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_Warning)
- [`PyExc_WindowsError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_WindowsError)
- [`PyExc_ZeroDivisionError`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExc_ZeroDivisionError)
- [`PyExceptionClass_Name()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyExceptionClass_Name)
- [`PyException_GetArgs()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyException_GetArgs)
- [`PyException_GetCause()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyException_GetCause)
- [`PyException_GetContext()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyException_GetContext)
- [`PyException_GetTraceback()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyException_GetTraceback)
- [`PyException_SetArgs()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyException_SetArgs)
- [`PyException_SetCause()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyException_SetCause)
- [`PyException_SetContext()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyException_SetContext)
- [`PyException_SetTraceback()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyException_SetTraceback)
- [`PyFile_FromFd()`](https://python-all.ru/3.15/c-api/file.html#c.PyFile_FromFd)
- [`PyFile_GetLine()`](https://python-all.ru/3.15/c-api/file.html#c.PyFile_GetLine)
- [`PyFile_WriteObject()`](https://python-all.ru/3.15/c-api/file.html#c.PyFile_WriteObject)
- [`PyFile_WriteString()`](https://python-all.ru/3.15/c-api/file.html#c.PyFile_WriteString)
- [`PyFilter_Type`](https://python-all.ru/3.15/c-api/iterator.html#c.PyFilter_Type)
- [`PyFloat_AsDouble()`](https://python-all.ru/3.15/c-api/float.html#c.PyFloat_AsDouble)
- [`PyFloat_FromDouble()`](https://python-all.ru/3.15/c-api/float.html#c.PyFloat_FromDouble)
- [`PyFloat_FromString()`](https://python-all.ru/3.15/c-api/float.html#c.PyFloat_FromString)
- [`PyFloat_GetInfo()`](https://python-all.ru/3.15/c-api/float.html#c.PyFloat_GetInfo)
- [`PyFloat_GetMax()`](https://python-all.ru/3.15/c-api/float.html#c.PyFloat_GetMax)
- [`PyFloat_GetMin()`](https://python-all.ru/3.15/c-api/float.html#c.PyFloat_GetMin)
- [`PyFloat_Type`](https://python-all.ru/3.15/c-api/float.html#c.PyFloat_Type)
- [`PyFrameObject`](https://python-all.ru/3.15/c-api/frame.html#c.PyFrameObject)
- [`PyFrame_GetCode()`](https://python-all.ru/3.15/c-api/frame.html#c.PyFrame_GetCode)
- [`PyFrame_GetLineNumber()`](https://python-all.ru/3.15/c-api/frame.html#c.PyFrame_GetLineNumber)
- [`PyFrozenSet_New()`](https://python-all.ru/3.15/c-api/set.html#c.PyFrozenSet_New)
- [`PyFrozenSet_Type`](https://python-all.ru/3.15/c-api/set.html#c.PyFrozenSet_Type)
- [`PyGC_Collect()`](https://python-all.ru/3.15/c-api/gcsupport.html#c.PyGC_Collect)
- [`PyGC_Disable()`](https://python-all.ru/3.15/c-api/gcsupport.html#c.PyGC_Disable)
- [`PyGC_Enable()`](https://python-all.ru/3.15/c-api/gcsupport.html#c.PyGC_Enable)
- [`PyGC_IsEnabled()`](https://python-all.ru/3.15/c-api/gcsupport.html#c.PyGC_IsEnabled)
- [`PyGILState_Ensure()`](https://python-all.ru/3.15/c-api/threads.html#c.PyGILState_Ensure)
- [`PyGILState_GetThisThreadState()`](https://python-all.ru/3.15/c-api/threads.html#c.PyGILState_GetThisThreadState)
- [`PyGILState_Release()`](https://python-all.ru/3.15/c-api/threads.html#c.PyGILState_Release)
- [`PyGILState_STATE`](https://python-all.ru/3.15/c-api/threads.html#c.PyGILState_STATE)
- [`PyGetSetDef`](https://python-all.ru/3.15/c-api/structures.html#c.PyGetSetDef)
- [`PyGetSetDescr_Type`](https://python-all.ru/3.15/c-api/descriptor.html#c.PyGetSetDescr_Type)
- [`PyImport_AddModule()`](https://python-all.ru/3.15/c-api/import.html#c.PyImport_AddModule)
- [`PyImport_AddModuleObject()`](https://python-all.ru/3.15/c-api/import.html#c.PyImport_AddModuleObject)
- [`PyImport_AddModuleRef()`](https://python-all.ru/3.15/c-api/import.html#c.PyImport_AddModuleRef)
- [`PyImport_AppendInittab()`](https://python-all.ru/3.15/c-api/import.html#c.PyImport_AppendInittab)
- [`PyImport_ExecCodeModule()`](https://python-all.ru/3.15/c-api/import.html#c.PyImport_ExecCodeModule)
- [`PyImport_ExecCodeModuleEx()`](https://python-all.ru/3.15/c-api/import.html#c.PyImport_ExecCodeModuleEx)
- [`PyImport_ExecCodeModuleObject()`](https://python-all.ru/3.15/c-api/import.html#c.PyImport_ExecCodeModuleObject)
- [`PyImport_ExecCodeModuleWithPathnames()`](https://python-all.ru/3.15/c-api/import.html#c.PyImport_ExecCodeModuleWithPathnames)
- [`PyImport_GetImporter()`](https://python-all.ru/3.15/c-api/import.html#c.PyImport_GetImporter)
- [`PyImport_GetMagicNumber()`](https://python-all.ru/3.15/c-api/import.html#c.PyImport_GetMagicNumber)
- [`PyImport_GetMagicTag()`](https://python-all.ru/3.15/c-api/import.html#c.PyImport_GetMagicTag)
- [`PyImport_GetModule()`](https://python-all.ru/3.15/c-api/import.html#c.PyImport_GetModule)
- [`PyImport_GetModuleDict()`](https://python-all.ru/3.15/c-api/import.html#c.PyImport_GetModuleDict)
- [`PyImport_Import()`](https://python-all.ru/3.15/c-api/import.html#c.PyImport_Import)
- [`PyImport_ImportFrozenModule()`](https://python-all.ru/3.15/c-api/import.html#c.PyImport_ImportFrozenModule)
- [`PyImport_ImportFrozenModuleObject()`](https://python-all.ru/3.15/c-api/import.html#c.PyImport_ImportFrozenModuleObject)
- [`PyImport_ImportModule()`](https://python-all.ru/3.15/c-api/import.html#c.PyImport_ImportModule)
- [`PyImport_ImportModuleLevel()`](https://python-all.ru/3.15/c-api/import.html#c.PyImport_ImportModuleLevel)
- [`PyImport_ImportModuleLevelObject()`](https://python-all.ru/3.15/c-api/import.html#c.PyImport_ImportModuleLevelObject)
- [`PyImport_ReloadModule()`](https://python-all.ru/3.15/c-api/import.html#c.PyImport_ReloadModule)
- [`PyIndex_Check()`](https://python-all.ru/3.15/c-api/number.html#c.PyIndex_Check)
- [`PyInterpreterGuard`](https://python-all.ru/3.15/c-api/interp-lifecycle.html#c.PyInterpreterGuard)
- [`PyInterpreterGuard_Close()`](https://python-all.ru/3.15/c-api/interp-lifecycle.html#c.PyInterpreterGuard_Close)
- [`PyInterpreterGuard_FromCurrent()`](https://python-all.ru/3.15/c-api/interp-lifecycle.html#c.PyInterpreterGuard_FromCurrent)
- [`PyInterpreterGuard_FromView()`](https://python-all.ru/3.15/c-api/interp-lifecycle.html#c.PyInterpreterGuard_FromView)
- [`PyInterpreterState`](https://python-all.ru/3.15/c-api/subinterpreters.html#c.PyInterpreterState)
- [`PyInterpreterState_Clear()`](https://python-all.ru/3.15/c-api/subinterpreters.html#c.PyInterpreterState_Clear)
- [`PyInterpreterState_Delete()`](https://python-all.ru/3.15/c-api/subinterpreters.html#c.PyInterpreterState_Delete)
- [`PyInterpreterState_Get()`](https://python-all.ru/3.15/c-api/subinterpreters.html#c.PyInterpreterState_Get)
- [`PyInterpreterState_GetDict()`](https://python-all.ru/3.15/c-api/subinterpreters.html#c.PyInterpreterState_GetDict)
- [`PyInterpreterState_GetID()`](https://python-all.ru/3.15/c-api/subinterpreters.html#c.PyInterpreterState_GetID)
- [`PyInterpreterState_New()`](https://python-all.ru/3.15/c-api/subinterpreters.html#c.PyInterpreterState_New)
- [`PyInterpreterView`](https://python-all.ru/3.15/c-api/interp-lifecycle.html#c.PyInterpreterView)
- [`PyInterpreterView_Close()`](https://python-all.ru/3.15/c-api/interp-lifecycle.html#c.PyInterpreterView_Close)
- [`PyInterpreterView_FromCurrent()`](https://python-all.ru/3.15/c-api/interp-lifecycle.html#c.PyInterpreterView_FromCurrent)
- [`PyInterpreterView_FromMain()`](https://python-all.ru/3.15/c-api/interp-lifecycle.html#c.PyInterpreterView_FromMain)
- [`PyIter_Check()`](https://python-all.ru/3.15/c-api/iter.html#c.PyIter_Check)
- [`PyIter_Next()`](https://python-all.ru/3.15/c-api/iter.html#c.PyIter_Next)
- [`PyIter_NextItem()`](https://python-all.ru/3.15/c-api/iter.html#c.PyIter_NextItem)
- [`PyIter_Send()`](https://python-all.ru/3.15/c-api/iter.html#c.PyIter_Send)
- [`PyListIter_Type`](https://python-all.ru/3.15/c-api/iterator.html#c.PyListIter_Type)
- [`PyListRevIter_Type`](https://python-all.ru/3.15/c-api/iterator.html#c.PyListRevIter_Type)
- [`PyList_Append()`](https://python-all.ru/3.15/c-api/list.html#c.PyList_Append)
- [`PyList_AsTuple()`](https://python-all.ru/3.15/c-api/list.html#c.PyList_AsTuple)
- [`PyList_GetItem()`](https://python-all.ru/3.15/c-api/list.html#c.PyList_GetItem)
- [`PyList_GetItemRef()`](https://python-all.ru/3.15/c-api/list.html#c.PyList_GetItemRef)
- [`PyList_GetSlice()`](https://python-all.ru/3.15/c-api/list.html#c.PyList_GetSlice)
- [`PyList_Insert()`](https://python-all.ru/3.15/c-api/list.html#c.PyList_Insert)
- [`PyList_New()`](https://python-all.ru/3.15/c-api/list.html#c.PyList_New)
- [`PyList_Reverse()`](https://python-all.ru/3.15/c-api/list.html#c.PyList_Reverse)
- [`PyList_SetItem()`](https://python-all.ru/3.15/c-api/list.html#c.PyList_SetItem)
- [`PyList_SetSlice()`](https://python-all.ru/3.15/c-api/list.html#c.PyList_SetSlice)
- [`PyList_Size()`](https://python-all.ru/3.15/c-api/list.html#c.PyList_Size)
- [`PyList_Sort()`](https://python-all.ru/3.15/c-api/list.html#c.PyList_Sort)
- [`PyList_Type`](https://python-all.ru/3.15/c-api/list.html#c.PyList_Type)
- [`PyLongExport`](https://python-all.ru/3.15/c-api/long.html#c.PyLongExport)
- [`PyLongLayout`](https://python-all.ru/3.15/c-api/long.html#c.PyLongLayout)
- [`PyLongObject`](https://python-all.ru/3.15/c-api/long.html#c.PyLongObject)
- [`PyLongRangeIter_Type`](https://python-all.ru/3.15/c-api/iterator.html#c.PyLongRangeIter_Type)
- [`PyLongWriter`](https://python-all.ru/3.15/c-api/long.html#c.PyLongWriter)
- [`PyLongWriter_Create()`](https://python-all.ru/3.15/c-api/long.html#c.PyLongWriter_Create)
- [`PyLongWriter_Discard()`](https://python-all.ru/3.15/c-api/long.html#c.PyLongWriter_Discard)
- [`PyLongWriter_Finish()`](https://python-all.ru/3.15/c-api/long.html#c.PyLongWriter_Finish)
- [`PyLong_AsDouble()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_AsDouble)
- [`PyLong_AsInt()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_AsInt)
- [`PyLong_AsInt32()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_AsInt32)
- [`PyLong_AsInt64()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_AsInt64)
- [`PyLong_AsLong()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_AsLong)
- [`PyLong_AsLongAndOverflow()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_AsLongAndOverflow)
- [`PyLong_AsLongLong()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_AsLongLong)
- [`PyLong_AsLongLongAndOverflow()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_AsLongLongAndOverflow)
- [`PyLong_AsNativeBytes()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_AsNativeBytes)
- [`PyLong_AsSize_t()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_AsSize_t)
- [`PyLong_AsSsize_t()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_AsSsize_t)
- [`PyLong_AsUInt32()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_AsUInt32)
- [`PyLong_AsUInt64()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_AsUInt64)
- [`PyLong_AsUnsignedLong()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_AsUnsignedLong)
- [`PyLong_AsUnsignedLongLong()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_AsUnsignedLongLong)
- [`PyLong_AsUnsignedLongLongMask()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_AsUnsignedLongLongMask)
- [`PyLong_AsUnsignedLongMask()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_AsUnsignedLongMask)
- [`PyLong_AsVoidPtr()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_AsVoidPtr)
- [`PyLong_Export()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_Export)
- [`PyLong_FreeExport()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_FreeExport)
- [`PyLong_FromDouble()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_FromDouble)
- [`PyLong_FromInt32()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_FromInt32)
- [`PyLong_FromInt64()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_FromInt64)
- [`PyLong_FromLong()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_FromLong)
- [`PyLong_FromLongLong()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_FromLongLong)
- [`PyLong_FromNativeBytes()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_FromNativeBytes)
- [`PyLong_FromSize_t()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_FromSize_t)
- [`PyLong_FromSsize_t()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_FromSsize_t)
- [`PyLong_FromString()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_FromString)
- [`PyLong_FromUInt32()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_FromUInt32)
- [`PyLong_FromUInt64()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_FromUInt64)
- [`PyLong_FromUnsignedLong()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_FromUnsignedLong)
- [`PyLong_FromUnsignedLongLong()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_FromUnsignedLongLong)
- [`PyLong_FromUnsignedNativeBytes()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_FromUnsignedNativeBytes)
- [`PyLong_FromVoidPtr()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_FromVoidPtr)
- [`PyLong_GetInfo()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_GetInfo)
- [`PyLong_GetNativeLayout()`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_GetNativeLayout)
- [`PyLong_Type`](https://python-all.ru/3.15/c-api/long.html#c.PyLong_Type)
- [`PyMODEXPORT_FUNC`](https://python-all.ru/3.15/c-api/extension-modules.html#c.PyMODEXPORT_FUNC)
- [`PyMap_Type`](https://python-all.ru/3.15/c-api/iterator.html#c.PyMap_Type)
- [`PyMapping_Check()`](https://python-all.ru/3.15/c-api/mapping.html#c.PyMapping_Check)
- [`PyMapping_GetItemString()`](https://python-all.ru/3.15/c-api/mapping.html#c.PyMapping_GetItemString)
- [`PyMapping_GetOptionalItem()`](https://python-all.ru/3.15/c-api/mapping.html#c.PyMapping_GetOptionalItem)
- [`PyMapping_GetOptionalItemString()`](https://python-all.ru/3.15/c-api/mapping.html#c.PyMapping_GetOptionalItemString)
- [`PyMapping_HasKey()`](https://python-all.ru/3.15/c-api/mapping.html#c.PyMapping_HasKey)
- [`PyMapping_HasKeyString()`](https://python-all.ru/3.15/c-api/mapping.html#c.PyMapping_HasKeyString)
- [`PyMapping_HasKeyStringWithError()`](https://python-all.ru/3.15/c-api/mapping.html#c.PyMapping_HasKeyStringWithError)
- [`PyMapping_HasKeyWithError()`](https://python-all.ru/3.15/c-api/mapping.html#c.PyMapping_HasKeyWithError)
- [`PyMapping_Items()`](https://python-all.ru/3.15/c-api/mapping.html#c.PyMapping_Items)
- [`PyMapping_Keys()`](https://python-all.ru/3.15/c-api/mapping.html#c.PyMapping_Keys)
- [`PyMapping_Length()`](https://python-all.ru/3.15/c-api/mapping.html#c.PyMapping_Length)
- [`PyMapping_SetItemString()`](https://python-all.ru/3.15/c-api/mapping.html#c.PyMapping_SetItemString)
- [`PyMapping_Size()`](https://python-all.ru/3.15/c-api/mapping.html#c.PyMapping_Size)
- [`PyMapping_Values()`](https://python-all.ru/3.15/c-api/mapping.html#c.PyMapping_Values)
- [`PyMem_Calloc()`](https://python-all.ru/3.15/c-api/memory.html#c.PyMem_Calloc)
- [`PyMem_Free()`](https://python-all.ru/3.15/c-api/memory.html#c.PyMem_Free)
- [`PyMem_Malloc()`](https://python-all.ru/3.15/c-api/memory.html#c.PyMem_Malloc)
- [`PyMem_RawCalloc()`](https://python-all.ru/3.15/c-api/memory.html#c.PyMem_RawCalloc)
- [`PyMem_RawFree()`](https://python-all.ru/3.15/c-api/memory.html#c.PyMem_RawFree)
- [`PyMem_RawMalloc()`](https://python-all.ru/3.15/c-api/memory.html#c.PyMem_RawMalloc)
- [`PyMem_RawRealloc()`](https://python-all.ru/3.15/c-api/memory.html#c.PyMem_RawRealloc)
- [`PyMem_Realloc()`](https://python-all.ru/3.15/c-api/memory.html#c.PyMem_Realloc)
- [`PyMemberDef`](https://python-all.ru/3.15/c-api/structures.html#c.PyMemberDef)
- [`PyMemberDescr_Type`](https://python-all.ru/3.15/c-api/descriptor.html#c.PyMemberDescr_Type)
- [`PyMember_GetOne()`](https://python-all.ru/3.15/c-api/structures.html#c.PyMember_GetOne)
- [`PyMember_SetOne()`](https://python-all.ru/3.15/c-api/structures.html#c.PyMember_SetOne)
- [`PyMemoryView_FromBuffer()`](https://python-all.ru/3.15/c-api/memoryview.html#c.PyMemoryView_FromBuffer)
- [`PyMemoryView_FromMemory()`](https://python-all.ru/3.15/c-api/memoryview.html#c.PyMemoryView_FromMemory)
- [`PyMemoryView_FromObject()`](https://python-all.ru/3.15/c-api/memoryview.html#c.PyMemoryView_FromObject)
- [`PyMemoryView_GetContiguous()`](https://python-all.ru/3.15/c-api/memoryview.html#c.PyMemoryView_GetContiguous)
- [`PyMemoryView_Type`](https://python-all.ru/3.15/c-api/memoryview.html#c.PyMemoryView_Type)
- [`PyMethodDef`](https://python-all.ru/3.15/c-api/structures.html#c.PyMethodDef)
- [`PyMethodDescr_Type`](https://python-all.ru/3.15/c-api/descriptor.html#c.PyMethodDescr_Type)
- [`PyModuleDef`](https://python-all.ru/3.15/c-api/module.html#c.PyModuleDef)
- [`PyModuleDef_Base`](https://python-all.ru/3.15/c-api/module.html#c.PyModuleDef_Base)
- [`PyModuleDef_Init()`](https://python-all.ru/3.15/c-api/extension-modules.html#c.PyModuleDef_Init)
- [`PyModuleDef_Slot`](https://python-all.ru/3.15/c-api/module.html#c.PyModuleDef_Slot)
- [`PyModuleDef_Type`](https://python-all.ru/3.15/c-api/module.html#c.PyModuleDef_Type)
- [`PyModule_Add()`](https://python-all.ru/3.15/c-api/module.html#c.PyModule_Add)
- [`PyModule_AddFunctions()`](https://python-all.ru/3.15/c-api/module.html#c.PyModule_AddFunctions)
- [`PyModule_AddIntConstant()`](https://python-all.ru/3.15/c-api/module.html#c.PyModule_AddIntConstant)
- [`PyModule_AddObject()`](https://python-all.ru/3.15/c-api/module.html#c.PyModule_AddObject)
- [`PyModule_AddObjectRef()`](https://python-all.ru/3.15/c-api/module.html#c.PyModule_AddObjectRef)
- [`PyModule_AddStringConstant()`](https://python-all.ru/3.15/c-api/module.html#c.PyModule_AddStringConstant)
- [`PyModule_AddType()`](https://python-all.ru/3.15/c-api/module.html#c.PyModule_AddType)
- [`PyModule_Create2()`](https://python-all.ru/3.15/c-api/module.html#c.PyModule_Create2)
- [`PyModule_Exec()`](https://python-all.ru/3.15/c-api/module.html#c.PyModule_Exec)
- [`PyModule_ExecDef()`](https://python-all.ru/3.15/c-api/module.html#c.PyModule_ExecDef)
- [`PyModule_FromDefAndSpec2()`](https://python-all.ru/3.15/c-api/module.html#c.PyModule_FromDefAndSpec2)
- [`PyModule_FromSlotsAndSpec()`](https://python-all.ru/3.15/c-api/module.html#c.PyModule_FromSlotsAndSpec)
- [`PyModule_GetDef()`](https://python-all.ru/3.15/c-api/module.html#c.PyModule_GetDef)
- [`PyModule_GetDict()`](https://python-all.ru/3.15/c-api/module.html#c.PyModule_GetDict)
- [`PyModule_GetFilename()`](https://python-all.ru/3.15/c-api/module.html#c.PyModule_GetFilename)
- [`PyModule_GetFilenameObject()`](https://python-all.ru/3.15/c-api/module.html#c.PyModule_GetFilenameObject)
- [`PyModule_GetName()`](https://python-all.ru/3.15/c-api/module.html#c.PyModule_GetName)
- [`PyModule_GetNameObject()`](https://python-all.ru/3.15/c-api/module.html#c.PyModule_GetNameObject)
- [`PyModule_GetState()`](https://python-all.ru/3.15/c-api/module.html#c.PyModule_GetState)
- [`PyModule_GetStateSize()`](https://python-all.ru/3.15/c-api/module.html#c.PyModule_GetStateSize)
- [`PyModule_GetState_DuringGC()`](https://python-all.ru/3.15/c-api/gcsupport.html#c.PyModule_GetState_DuringGC)
- [`PyModule_GetToken()`](https://python-all.ru/3.15/c-api/module.html#c.PyModule_GetToken)
- [`PyModule_GetToken_DuringGC()`](https://python-all.ru/3.15/c-api/gcsupport.html#c.PyModule_GetToken_DuringGC)
- [`PyModule_New()`](https://python-all.ru/3.15/c-api/module.html#c.PyModule_New)
- [`PyModule_NewObject()`](https://python-all.ru/3.15/c-api/module.html#c.PyModule_NewObject)
- [`PyModule_SetDocString()`](https://python-all.ru/3.15/c-api/module.html#c.PyModule_SetDocString)
- [`PyModule_Type`](https://python-all.ru/3.15/c-api/module.html#c.PyModule_Type)
- [`PyNumber_Absolute()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_Absolute)
- [`PyNumber_Add()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_Add)
- [`PyNumber_And()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_And)
- [`PyNumber_AsSsize_t()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_AsSsize_t)
- [`PyNumber_Check()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_Check)
- [`PyNumber_Divmod()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_Divmod)
- [`PyNumber_Float()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_Float)
- [`PyNumber_FloorDivide()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_FloorDivide)
- [`PyNumber_InPlaceAdd()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_InPlaceAdd)
- [`PyNumber_InPlaceAnd()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_InPlaceAnd)
- [`PyNumber_InPlaceFloorDivide()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_InPlaceFloorDivide)
- [`PyNumber_InPlaceLshift()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_InPlaceLshift)
- [`PyNumber_InPlaceMatrixMultiply()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_InPlaceMatrixMultiply)
- [`PyNumber_InPlaceMultiply()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_InPlaceMultiply)
- [`PyNumber_InPlaceOr()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_InPlaceOr)
- [`PyNumber_InPlacePower()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_InPlacePower)
- [`PyNumber_InPlaceRemainder()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_InPlaceRemainder)
- [`PyNumber_InPlaceRshift()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_InPlaceRshift)
- [`PyNumber_InPlaceSubtract()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_InPlaceSubtract)
- [`PyNumber_InPlaceTrueDivide()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_InPlaceTrueDivide)
- [`PyNumber_InPlaceXor()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_InPlaceXor)
- [`PyNumber_Index()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_Index)
- [`PyNumber_Invert()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_Invert)
- [`PyNumber_Long()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_Long)
- [`PyNumber_Lshift()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_Lshift)
- [`PyNumber_MatrixMultiply()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_MatrixMultiply)
- [`PyNumber_Multiply()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_Multiply)
- [`PyNumber_Negative()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_Negative)
- [`PyNumber_Or()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_Or)
- [`PyNumber_Positive()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_Positive)
- [`PyNumber_Power()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_Power)
- [`PyNumber_Remainder()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_Remainder)
- [`PyNumber_Rshift()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_Rshift)
- [`PyNumber_Subtract()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_Subtract)
- [`PyNumber_ToBase()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_ToBase)
- [`PyNumber_TrueDivide()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_TrueDivide)
- [`PyNumber_Xor()`](https://python-all.ru/3.15/c-api/number.html#c.PyNumber_Xor)
- [`PyOS_AfterFork()`](https://python-all.ru/3.15/c-api/sys.html#c.PyOS_AfterFork)
- [`PyOS_AfterFork_Child()`](https://python-all.ru/3.15/c-api/sys.html#c.PyOS_AfterFork_Child)
- [`PyOS_AfterFork_Parent()`](https://python-all.ru/3.15/c-api/sys.html#c.PyOS_AfterFork_Parent)
- [`PyOS_BeforeFork()`](https://python-all.ru/3.15/c-api/sys.html#c.PyOS_BeforeFork)
- [`PyOS_CheckStack()`](https://python-all.ru/3.15/c-api/sys.html#c.PyOS_CheckStack)
- [`PyOS_FSPath()`](https://python-all.ru/3.15/c-api/sys.html#c.PyOS_FSPath)
- [`PyOS_InputHook`](https://python-all.ru/3.15/c-api/veryhigh.html#c.PyOS_InputHook)
- [`PyOS_InterruptOccurred()`](https://python-all.ru/3.15/c-api/sys.html#c.PyOS_InterruptOccurred)
- [`PyOS_double_to_string()`](https://python-all.ru/3.15/c-api/conversion.html#c.PyOS_double_to_string)
- [`PyOS_getsig()`](https://python-all.ru/3.15/c-api/sys.html#c.PyOS_getsig)
- [`PyOS_mystricmp()`](https://python-all.ru/3.15/c-api/conversion.html#c.PyOS_mystricmp)
- [`PyOS_mystrnicmp()`](https://python-all.ru/3.15/c-api/conversion.html#c.PyOS_mystrnicmp)
- [`PyOS_setsig()`](https://python-all.ru/3.15/c-api/sys.html#c.PyOS_setsig)
- [`PyOS_sighandler_t`](https://python-all.ru/3.15/c-api/sys.html#c.PyOS_sighandler_t)
- [`PyOS_snprintf()`](https://python-all.ru/3.15/c-api/conversion.html#c.PyOS_snprintf)
- [`PyOS_string_to_double()`](https://python-all.ru/3.15/c-api/conversion.html#c.PyOS_string_to_double)
- [`PyOS_strtol()`](https://python-all.ru/3.15/c-api/conversion.html#c.PyOS_strtol)
- [`PyOS_strtoul()`](https://python-all.ru/3.15/c-api/conversion.html#c.PyOS_strtoul)
- [`PyOS_vsnprintf()`](https://python-all.ru/3.15/c-api/conversion.html#c.PyOS_vsnprintf)
- [`PyObject`](https://python-all.ru/3.15/c-api/structures.html#c.PyObject)
- [`PyObject.ob_refcnt`](https://python-all.ru/3.15/c-api/structures.html#c.PyObject.ob_refcnt)
- [`PyObject.ob_type`](https://python-all.ru/3.15/c-api/structures.html#c.PyObject.ob_type)
- [`PyObject_ASCII()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_ASCII)
- [`PyObject_AsFileDescriptor()`](https://python-all.ru/3.15/c-api/file.html#c.PyObject_AsFileDescriptor)
- [`PyObject_Bytes()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_Bytes)
- [`PyObject_Call()`](https://python-all.ru/3.15/c-api/call.html#c.PyObject_Call)
- [`PyObject_CallFinalizerFromDealloc()`](https://python-all.ru/3.15/c-api/lifecycle.html#c.PyObject_CallFinalizerFromDealloc)
- [`PyObject_CallFunction()`](https://python-all.ru/3.15/c-api/call.html#c.PyObject_CallFunction)
- [`PyObject_CallFunctionObjArgs()`](https://python-all.ru/3.15/c-api/call.html#c.PyObject_CallFunctionObjArgs)
- [`PyObject_CallMethod()`](https://python-all.ru/3.15/c-api/call.html#c.PyObject_CallMethod)
- [`PyObject_CallMethodObjArgs()`](https://python-all.ru/3.15/c-api/call.html#c.PyObject_CallMethodObjArgs)
- [`PyObject_CallNoArgs()`](https://python-all.ru/3.15/c-api/call.html#c.PyObject_CallNoArgs)
- [`PyObject_CallObject()`](https://python-all.ru/3.15/c-api/call.html#c.PyObject_CallObject)
- [`PyObject_Calloc()`](https://python-all.ru/3.15/c-api/memory.html#c.PyObject_Calloc)
- [`PyObject_CheckBuffer()`](https://python-all.ru/3.15/c-api/buffer.html#c.PyObject_CheckBuffer)
- [`PyObject_ClearWeakRefs()`](https://python-all.ru/3.15/c-api/weakref.html#c.PyObject_ClearWeakRefs)
- [`PyObject_CopyData()`](https://python-all.ru/3.15/c-api/buffer.html#c.PyObject_CopyData)
- [`PyObject_DelAttr()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_DelAttr)
- [`PyObject_DelAttrString()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_DelAttrString)
- [`PyObject_DelItem()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_DelItem)
- [`PyObject_DelItemString()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_DelItemString)
- [`PyObject_Dir()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_Dir)
- [`PyObject_Format()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_Format)
- [`PyObject_Free()`](https://python-all.ru/3.15/c-api/memory.html#c.PyObject_Free)
- [`PyObject_GC_Del()`](https://python-all.ru/3.15/c-api/gcsupport.html#c.PyObject_GC_Del)
- [`PyObject_GC_IsFinalized()`](https://python-all.ru/3.15/c-api/gcsupport.html#c.PyObject_GC_IsFinalized)
- [`PyObject_GC_IsTracked()`](https://python-all.ru/3.15/c-api/gcsupport.html#c.PyObject_GC_IsTracked)
- [`PyObject_GC_Track()`](https://python-all.ru/3.15/c-api/gcsupport.html#c.PyObject_GC_Track)
- [`PyObject_GC_UnTrack()`](https://python-all.ru/3.15/c-api/gcsupport.html#c.PyObject_GC_UnTrack)
- [`PyObject_GenericGetAttr()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_GenericGetAttr)
- [`PyObject_GenericGetDict()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_GenericGetDict)
- [`PyObject_GenericSetAttr()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_GenericSetAttr)
- [`PyObject_GenericSetDict()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_GenericSetDict)
- [`PyObject_GetAIter()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_GetAIter)
- [`PyObject_GetAttr()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_GetAttr)
- [`PyObject_GetAttrString()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_GetAttrString)
- [`PyObject_GetBuffer()`](https://python-all.ru/3.15/c-api/buffer.html#c.PyObject_GetBuffer)
- [`PyObject_GetItem()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_GetItem)
- [`PyObject_GetIter()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_GetIter)
- [`PyObject_GetOptionalAttr()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_GetOptionalAttr)
- [`PyObject_GetOptionalAttrString()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_GetOptionalAttrString)
- [`PyObject_GetTypeData()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_GetTypeData)
- [`PyObject_GetTypeData_DuringGC()`](https://python-all.ru/3.15/c-api/gcsupport.html#c.PyObject_GetTypeData_DuringGC)
- [`PyObject_HasAttr()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_HasAttr)
- [`PyObject_HasAttrString()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_HasAttrString)
- [`PyObject_HasAttrStringWithError()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_HasAttrStringWithError)
- [`PyObject_HasAttrWithError()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_HasAttrWithError)
- [`PyObject_Hash()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_Hash)
- [`PyObject_HashNotImplemented()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_HashNotImplemented)
- [`PyObject_Init()`](https://python-all.ru/3.15/c-api/allocation.html#c.PyObject_Init)
- [`PyObject_InitVar()`](https://python-all.ru/3.15/c-api/allocation.html#c.PyObject_InitVar)
- [`PyObject_IsInstance()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_IsInstance)
- [`PyObject_IsSubclass()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_IsSubclass)
- [`PyObject_IsTrue()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_IsTrue)
- [`PyObject_Length()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_Length)
- [`PyObject_Malloc()`](https://python-all.ru/3.15/c-api/memory.html#c.PyObject_Malloc)
- [`PyObject_Not()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_Not)
- [`PyObject_Realloc()`](https://python-all.ru/3.15/c-api/memory.html#c.PyObject_Realloc)
- [`PyObject_Repr()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_Repr)
- [`PyObject_RichCompare()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_RichCompare)
- [`PyObject_RichCompareBool()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_RichCompareBool)
- [`PyObject_SelfIter()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_SelfIter)
- [`PyObject_SetAttr()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_SetAttr)
- [`PyObject_SetAttrString()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_SetAttrString)
- [`PyObject_SetItem()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_SetItem)
- [`PyObject_Size()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_Size)
- [`PyObject_Str()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_Str)
- [`PyObject_Type()`](https://python-all.ru/3.15/c-api/object.html#c.PyObject_Type)
- [`PyObject_Vectorcall()`](https://python-all.ru/3.15/c-api/call.html#c.PyObject_Vectorcall)
- [`PyObject_VectorcallMethod()`](https://python-all.ru/3.15/c-api/call.html#c.PyObject_VectorcallMethod)
- [`PyProperty_Type`](https://python-all.ru/3.15/c-api/descriptor.html#c.PyProperty_Type)
- [`PyRangeIter_Type`](https://python-all.ru/3.15/c-api/iterator.html#c.PyRangeIter_Type)
- [`PyRange_Type`](https://python-all.ru/3.15/c-api/iterator.html#c.PyRange_Type)
- [`PyReversed_Type`](https://python-all.ru/3.15/c-api/iterator.html#c.PyReversed_Type)
- [`PySeqIter_New()`](https://python-all.ru/3.15/c-api/iterator.html#c.PySeqIter_New)
- [`PySeqIter_Type`](https://python-all.ru/3.15/c-api/iterator.html#c.PySeqIter_Type)
- [`PySequence_Check()`](https://python-all.ru/3.15/c-api/sequence.html#c.PySequence_Check)
- [`PySequence_Concat()`](https://python-all.ru/3.15/c-api/sequence.html#c.PySequence_Concat)
- [`PySequence_Contains()`](https://python-all.ru/3.15/c-api/sequence.html#c.PySequence_Contains)
- [`PySequence_Count()`](https://python-all.ru/3.15/c-api/sequence.html#c.PySequence_Count)
- [`PySequence_DelItem()`](https://python-all.ru/3.15/c-api/sequence.html#c.PySequence_DelItem)
- [`PySequence_DelSlice()`](https://python-all.ru/3.15/c-api/sequence.html#c.PySequence_DelSlice)
- [`PySequence_Fast()`](https://python-all.ru/3.15/c-api/sequence.html#c.PySequence_Fast)
- [`PySequence_GetItem()`](https://python-all.ru/3.15/c-api/sequence.html#c.PySequence_GetItem)
- [`PySequence_GetSlice()`](https://python-all.ru/3.15/c-api/sequence.html#c.PySequence_GetSlice)
- [`PySequence_In()`](https://python-all.ru/3.15/c-api/sequence.html#c.PySequence_In)
- [`PySequence_InPlaceConcat()`](https://python-all.ru/3.15/c-api/sequence.html#c.PySequence_InPlaceConcat)
- [`PySequence_InPlaceRepeat()`](https://python-all.ru/3.15/c-api/sequence.html#c.PySequence_InPlaceRepeat)
- [`PySequence_Index()`](https://python-all.ru/3.15/c-api/sequence.html#c.PySequence_Index)
- [`PySequence_Length()`](https://python-all.ru/3.15/c-api/sequence.html#c.PySequence_Length)
- [`PySequence_List()`](https://python-all.ru/3.15/c-api/sequence.html#c.PySequence_List)
- [`PySequence_Repeat()`](https://python-all.ru/3.15/c-api/sequence.html#c.PySequence_Repeat)
- [`PySequence_SetItem()`](https://python-all.ru/3.15/c-api/sequence.html#c.PySequence_SetItem)
- [`PySequence_SetSlice()`](https://python-all.ru/3.15/c-api/sequence.html#c.PySequence_SetSlice)
- [`PySequence_Size()`](https://python-all.ru/3.15/c-api/sequence.html#c.PySequence_Size)
- [`PySequence_Tuple()`](https://python-all.ru/3.15/c-api/sequence.html#c.PySequence_Tuple)
- [`PySetIter_Type`](https://python-all.ru/3.15/c-api/iterator.html#c.PySetIter_Type)
- [`PySet_Add()`](https://python-all.ru/3.15/c-api/set.html#c.PySet_Add)
- [`PySet_Clear()`](https://python-all.ru/3.15/c-api/set.html#c.PySet_Clear)
- [`PySet_Contains()`](https://python-all.ru/3.15/c-api/set.html#c.PySet_Contains)
- [`PySet_Discard()`](https://python-all.ru/3.15/c-api/set.html#c.PySet_Discard)
- [`PySet_New()`](https://python-all.ru/3.15/c-api/set.html#c.PySet_New)
- [`PySet_Pop()`](https://python-all.ru/3.15/c-api/set.html#c.PySet_Pop)
- [`PySet_Size()`](https://python-all.ru/3.15/c-api/set.html#c.PySet_Size)
- [`PySet_Type`](https://python-all.ru/3.15/c-api/set.html#c.PySet_Type)
- [`PySlice_AdjustIndices()`](https://python-all.ru/3.15/c-api/slice.html#c.PySlice_AdjustIndices)
- [`PySlice_GetIndices()`](https://python-all.ru/3.15/c-api/slice.html#c.PySlice_GetIndices)
- [`PySlice_GetIndicesEx()`](https://python-all.ru/3.15/c-api/slice.html#c.PySlice_GetIndicesEx)
- [`PySlice_New()`](https://python-all.ru/3.15/c-api/slice.html#c.PySlice_New)
- [`PySlice_Type`](https://python-all.ru/3.15/c-api/slice.html#c.PySlice_Type)
- [`PySlice_Unpack()`](https://python-all.ru/3.15/c-api/slice.html#c.PySlice_Unpack)
- [`PySlot`](https://python-all.ru/3.15/c-api/slots.html#c.PySlot)
- [`PySlot_DATA`](https://python-all.ru/3.15/c-api/slots.html#c.PySlot_DATA)
- [`PySlot_END`](https://python-all.ru/3.15/c-api/slots.html#c.PySlot_END)
- [`PySlot_FUNC`](https://python-all.ru/3.15/c-api/slots.html#c.PySlot_FUNC)
- [`PySlot_INT64`](https://python-all.ru/3.15/c-api/slots.html#c.PySlot_INT64)
- [`PySlot_INTPTR`](https://python-all.ru/3.15/c-api/slots.html#c.PySlot_INTPTR)
- [`PySlot_OPTIONAL`](https://python-all.ru/3.15/c-api/slots.html#c.PySlot_OPTIONAL)
- [`PySlot_PTR`](https://python-all.ru/3.15/c-api/slots.html#c.PySlot_PTR)
- [`PySlot_PTR_STATIC`](https://python-all.ru/3.15/c-api/slots.html#c.PySlot_PTR_STATIC)
- [`PySlot_SIZE`](https://python-all.ru/3.15/c-api/slots.html#c.PySlot_SIZE)
- [`PySlot_STATIC`](https://python-all.ru/3.15/c-api/slots.html#c.PySlot_STATIC)
- [`PySlot_STATIC_DATA`](https://python-all.ru/3.15/c-api/slots.html#c.PySlot_STATIC_DATA)
- [`PySlot_UINT64`](https://python-all.ru/3.15/c-api/slots.html#c.PySlot_UINT64)
- [`PyState_AddModule()`](https://python-all.ru/3.15/c-api/module.html#c.PyState_AddModule)
- [`PyState_FindModule()`](https://python-all.ru/3.15/c-api/module.html#c.PyState_FindModule)
- [`PyState_RemoveModule()`](https://python-all.ru/3.15/c-api/module.html#c.PyState_RemoveModule)
- [`PyStructSequence_Desc`](https://python-all.ru/3.15/c-api/tuple.html#c.PyStructSequence_Desc)
- [`PyStructSequence_Field`](https://python-all.ru/3.15/c-api/tuple.html#c.PyStructSequence_Field)
- [`PyStructSequence_GetItem()`](https://python-all.ru/3.15/c-api/tuple.html#c.PyStructSequence_GetItem)
- [`PyStructSequence_New()`](https://python-all.ru/3.15/c-api/tuple.html#c.PyStructSequence_New)
- [`PyStructSequence_NewType()`](https://python-all.ru/3.15/c-api/tuple.html#c.PyStructSequence_NewType)
- [`PyStructSequence_SetItem()`](https://python-all.ru/3.15/c-api/tuple.html#c.PyStructSequence_SetItem)
- [`PyStructSequence_UnnamedField`](https://python-all.ru/3.15/c-api/tuple.html#c.PyStructSequence_UnnamedField)
- [`PySuper_Type`](https://python-all.ru/3.15/c-api/descriptor.html#c.PySuper_Type)
- [`PySys_Audit()`](https://python-all.ru/3.15/c-api/sys.html#c.PySys_Audit)
- [`PySys_AuditTuple()`](https://python-all.ru/3.15/c-api/sys.html#c.PySys_AuditTuple)
- [`PySys_FormatStderr()`](https://python-all.ru/3.15/c-api/sys.html#c.PySys_FormatStderr)
- [`PySys_FormatStdout()`](https://python-all.ru/3.15/c-api/sys.html#c.PySys_FormatStdout)
- [`PySys_GetAttr()`](https://python-all.ru/3.15/c-api/sys.html#c.PySys_GetAttr)
- [`PySys_GetAttrString()`](https://python-all.ru/3.15/c-api/sys.html#c.PySys_GetAttrString)
- [`PySys_GetObject()`](https://python-all.ru/3.15/c-api/sys.html#c.PySys_GetObject)
- [`PySys_GetOptionalAttr()`](https://python-all.ru/3.15/c-api/sys.html#c.PySys_GetOptionalAttr)
- [`PySys_GetOptionalAttrString()`](https://python-all.ru/3.15/c-api/sys.html#c.PySys_GetOptionalAttrString)
- [`PySys_GetXOptions()`](https://python-all.ru/3.15/c-api/sys.html#c.PySys_GetXOptions)
- [`PySys_SetArgv()`](https://python-all.ru/3.15/c-api/interp-lifecycle.html#c.PySys_SetArgv)
- [`PySys_SetArgvEx()`](https://python-all.ru/3.15/c-api/interp-lifecycle.html#c.PySys_SetArgvEx)
- [`PySys_SetObject()`](https://python-all.ru/3.15/c-api/sys.html#c.PySys_SetObject)
- [`PySys_WriteStderr()`](https://python-all.ru/3.15/c-api/sys.html#c.PySys_WriteStderr)
- [`PySys_WriteStdout()`](https://python-all.ru/3.15/c-api/sys.html#c.PySys_WriteStdout)
- [`PyThreadState`](https://python-all.ru/3.15/c-api/threads.html#c.PyThreadState)
- [`PyThreadStateToken`](https://python-all.ru/3.15/c-api/threads.html#c.PyThreadStateToken)
- [`PyThreadState_Clear()`](https://python-all.ru/3.15/c-api/threads.html#c.PyThreadState_Clear)
- [`PyThreadState_Delete()`](https://python-all.ru/3.15/c-api/threads.html#c.PyThreadState_Delete)
- [`PyThreadState_Ensure()`](https://python-all.ru/3.15/c-api/threads.html#c.PyThreadState_Ensure)
- [`PyThreadState_EnsureFromView()`](https://python-all.ru/3.15/c-api/threads.html#c.PyThreadState_EnsureFromView)
- [`PyThreadState_Get()`](https://python-all.ru/3.15/c-api/threads.html#c.PyThreadState_Get)
- [`PyThreadState_GetDict()`](https://python-all.ru/3.15/c-api/threads.html#c.PyThreadState_GetDict)
- [`PyThreadState_GetFrame()`](https://python-all.ru/3.15/c-api/threads.html#c.PyThreadState_GetFrame)
- [`PyThreadState_GetID()`](https://python-all.ru/3.15/c-api/threads.html#c.PyThreadState_GetID)
- [`PyThreadState_GetInterpreter()`](https://python-all.ru/3.15/c-api/threads.html#c.PyThreadState_GetInterpreter)
- [`PyThreadState_New()`](https://python-all.ru/3.15/c-api/threads.html#c.PyThreadState_New)
- [`PyThreadState_Release()`](https://python-all.ru/3.15/c-api/threads.html#c.PyThreadState_Release)
- [`PyThreadState_SetAsyncExc()`](https://python-all.ru/3.15/c-api/threads.html#c.PyThreadState_SetAsyncExc)
- [`PyThreadState_Swap()`](https://python-all.ru/3.15/c-api/threads.html#c.PyThreadState_Swap)
- [`PyThread_GetInfo()`](https://python-all.ru/3.15/c-api/threads.html#c.PyThread_GetInfo)
- [`PyThread_ReInitTLS()`](https://python-all.ru/3.15/c-api/tls.html#c.PyThread_ReInitTLS)
- [`PyThread_acquire_lock()`](https://python-all.ru/3.15/c-api/synchronization.html#c.PyThread_acquire_lock)
- [`PyThread_acquire_lock_timed()`](https://python-all.ru/3.15/c-api/synchronization.html#c.PyThread_acquire_lock_timed)
- [`PyThread_allocate_lock()`](https://python-all.ru/3.15/c-api/synchronization.html#c.PyThread_allocate_lock)
- [`PyThread_create_key()`](https://python-all.ru/3.15/c-api/tls.html#c.PyThread_create_key)
- [`PyThread_delete_key()`](https://python-all.ru/3.15/c-api/tls.html#c.PyThread_delete_key)
- [`PyThread_delete_key_value()`](https://python-all.ru/3.15/c-api/tls.html#c.PyThread_delete_key_value)
- [`PyThread_exit_thread()`](https://python-all.ru/3.15/c-api/threads.html#c.PyThread_exit_thread)
- [`PyThread_free_lock()`](https://python-all.ru/3.15/c-api/synchronization.html#c.PyThread_free_lock)
- [`PyThread_get_key_value()`](https://python-all.ru/3.15/c-api/tls.html#c.PyThread_get_key_value)
- [`PyThread_get_stacksize()`](https://python-all.ru/3.15/c-api/threads.html#c.PyThread_get_stacksize)
- [`PyThread_get_thread_ident()`](https://python-all.ru/3.15/c-api/threads.html#c.PyThread_get_thread_ident)
- [`PyThread_get_thread_native_id()`](https://python-all.ru/3.15/c-api/threads.html#c.PyThread_get_thread_native_id)
- [`PyThread_init_thread()`](https://python-all.ru/3.15/c-api/threads.html#c.PyThread_init_thread)
- [`PyThread_release_lock()`](https://python-all.ru/3.15/c-api/synchronization.html#c.PyThread_release_lock)
- [`PyThread_set_key_value()`](https://python-all.ru/3.15/c-api/tls.html#c.PyThread_set_key_value)
- [`PyThread_set_stacksize()`](https://python-all.ru/3.15/c-api/threads.html#c.PyThread_set_stacksize)
- [`PyThread_start_new_thread()`](https://python-all.ru/3.15/c-api/threads.html#c.PyThread_start_new_thread)
- [`PyThread_tss_alloc()`](https://python-all.ru/3.15/c-api/tls.html#c.PyThread_tss_alloc)
- [`PyThread_tss_create()`](https://python-all.ru/3.15/c-api/tls.html#c.PyThread_tss_create)
- [`PyThread_tss_delete()`](https://python-all.ru/3.15/c-api/tls.html#c.PyThread_tss_delete)
- [`PyThread_tss_free()`](https://python-all.ru/3.15/c-api/tls.html#c.PyThread_tss_free)
- [`PyThread_tss_get()`](https://python-all.ru/3.15/c-api/tls.html#c.PyThread_tss_get)
- [`PyThread_tss_is_created()`](https://python-all.ru/3.15/c-api/tls.html#c.PyThread_tss_is_created)
- [`PyThread_tss_set()`](https://python-all.ru/3.15/c-api/tls.html#c.PyThread_tss_set)
- [`PyTraceBack_Here()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyTraceBack_Here)
- [`PyTraceBack_Print()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyTraceBack_Print)
- [`PyTraceBack_Type`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyTraceBack_Type)
- [`PyTupleIter_Type`](https://python-all.ru/3.15/c-api/iterator.html#c.PyTupleIter_Type)
- [`PyTuple_GetItem()`](https://python-all.ru/3.15/c-api/tuple.html#c.PyTuple_GetItem)
- [`PyTuple_GetSlice()`](https://python-all.ru/3.15/c-api/tuple.html#c.PyTuple_GetSlice)
- [`PyTuple_New()`](https://python-all.ru/3.15/c-api/tuple.html#c.PyTuple_New)
- [`PyTuple_Pack()`](https://python-all.ru/3.15/c-api/tuple.html#c.PyTuple_Pack)
- [`PyTuple_SetItem()`](https://python-all.ru/3.15/c-api/tuple.html#c.PyTuple_SetItem)
- [`PyTuple_Size()`](https://python-all.ru/3.15/c-api/tuple.html#c.PyTuple_Size)
- [`PyTuple_Type`](https://python-all.ru/3.15/c-api/tuple.html#c.PyTuple_Type)
- [`PyTypeObject`](https://python-all.ru/3.15/c-api/type.html#c.PyTypeObject)
- [`PyType_ClearCache()`](https://python-all.ru/3.15/c-api/type.html#c.PyType_ClearCache)
- [`PyType_Freeze()`](https://python-all.ru/3.15/c-api/type.html#c.PyType_Freeze)
- [`PyType_FromMetaclass()`](https://python-all.ru/3.15/c-api/type.html#c.PyType_FromMetaclass)
- [`PyType_FromModuleAndSpec()`](https://python-all.ru/3.15/c-api/type.html#c.PyType_FromModuleAndSpec)
- [`PyType_FromSlots()`](https://python-all.ru/3.15/c-api/type.html#c.PyType_FromSlots)
- [`PyType_FromSpec()`](https://python-all.ru/3.15/c-api/type.html#c.PyType_FromSpec)
- [`PyType_FromSpecWithBases()`](https://python-all.ru/3.15/c-api/type.html#c.PyType_FromSpecWithBases)
- [`PyType_GenericAlloc()`](https://python-all.ru/3.15/c-api/type.html#c.PyType_GenericAlloc)
- [`PyType_GenericNew()`](https://python-all.ru/3.15/c-api/type.html#c.PyType_GenericNew)
- [`PyType_GetBaseByToken()`](https://python-all.ru/3.15/c-api/type.html#c.PyType_GetBaseByToken)
- [`PyType_GetBaseByToken_DuringGC()`](https://python-all.ru/3.15/c-api/gcsupport.html#c.PyType_GetBaseByToken_DuringGC)
- [`PyType_GetFlags()`](https://python-all.ru/3.15/c-api/type.html#c.PyType_GetFlags)
- [`PyType_GetFullyQualifiedName()`](https://python-all.ru/3.15/c-api/type.html#c.PyType_GetFullyQualifiedName)
- [`PyType_GetModule()`](https://python-all.ru/3.15/c-api/type.html#c.PyType_GetModule)
- [`PyType_GetModuleByDef()`](https://python-all.ru/3.15/c-api/type.html#c.PyType_GetModuleByDef)
- [`PyType_GetModuleByToken()`](https://python-all.ru/3.15/c-api/type.html#c.PyType_GetModuleByToken)
- [`PyType_GetModuleByToken_DuringGC()`](https://python-all.ru/3.15/c-api/gcsupport.html#c.PyType_GetModuleByToken_DuringGC)
- [`PyType_GetModuleName()`](https://python-all.ru/3.15/c-api/type.html#c.PyType_GetModuleName)
- [`PyType_GetModuleState()`](https://python-all.ru/3.15/c-api/type.html#c.PyType_GetModuleState)
- [`PyType_GetModuleState_DuringGC()`](https://python-all.ru/3.15/c-api/gcsupport.html#c.PyType_GetModuleState_DuringGC)
- [`PyType_GetModule_DuringGC()`](https://python-all.ru/3.15/c-api/gcsupport.html#c.PyType_GetModule_DuringGC)
- [`PyType_GetName()`](https://python-all.ru/3.15/c-api/type.html#c.PyType_GetName)
- [`PyType_GetQualName()`](https://python-all.ru/3.15/c-api/type.html#c.PyType_GetQualName)
- [`PyType_GetSlot()`](https://python-all.ru/3.15/c-api/type.html#c.PyType_GetSlot)
- [`PyType_GetTypeDataSize()`](https://python-all.ru/3.15/c-api/object.html#c.PyType_GetTypeDataSize)
- [`PyType_IsSubtype()`](https://python-all.ru/3.15/c-api/type.html#c.PyType_IsSubtype)
- [`PyType_Modified()`](https://python-all.ru/3.15/c-api/type.html#c.PyType_Modified)
- [`PyType_Ready()`](https://python-all.ru/3.15/c-api/type.html#c.PyType_Ready)
- [`PyType_Slot`](https://python-all.ru/3.15/c-api/type.html#c.PyType_Slot)
- [`PyType_Spec`](https://python-all.ru/3.15/c-api/type.html#c.PyType_Spec)
- [`PyType_Type`](https://python-all.ru/3.15/c-api/type.html#c.PyType_Type)
- [`PyUnicodeDecodeError_Create()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyUnicodeDecodeError_Create)
- [`PyUnicodeDecodeError_GetEncoding()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyUnicodeDecodeError_GetEncoding)
- [`PyUnicodeDecodeError_GetEnd()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyUnicodeDecodeError_GetEnd)
- [`PyUnicodeDecodeError_GetObject()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyUnicodeDecodeError_GetObject)
- [`PyUnicodeDecodeError_GetReason()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyUnicodeDecodeError_GetReason)
- [`PyUnicodeDecodeError_GetStart()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyUnicodeDecodeError_GetStart)
- [`PyUnicodeDecodeError_SetEnd()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyUnicodeDecodeError_SetEnd)
- [`PyUnicodeDecodeError_SetReason()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyUnicodeDecodeError_SetReason)
- [`PyUnicodeDecodeError_SetStart()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyUnicodeDecodeError_SetStart)
- [`PyUnicodeEncodeError_GetEncoding()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyUnicodeEncodeError_GetEncoding)
- [`PyUnicodeEncodeError_GetEnd()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyUnicodeEncodeError_GetEnd)
- [`PyUnicodeEncodeError_GetObject()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyUnicodeEncodeError_GetObject)
- [`PyUnicodeEncodeError_GetReason()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyUnicodeEncodeError_GetReason)
- [`PyUnicodeEncodeError_GetStart()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyUnicodeEncodeError_GetStart)
- [`PyUnicodeEncodeError_SetEnd()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyUnicodeEncodeError_SetEnd)
- [`PyUnicodeEncodeError_SetReason()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyUnicodeEncodeError_SetReason)
- [`PyUnicodeEncodeError_SetStart()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyUnicodeEncodeError_SetStart)
- [`PyUnicodeIter_Type`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicodeIter_Type)
- [`PyUnicodeTranslateError_GetEnd()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyUnicodeTranslateError_GetEnd)
- [`PyUnicodeTranslateError_GetObject()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyUnicodeTranslateError_GetObject)
- [`PyUnicodeTranslateError_GetReason()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyUnicodeTranslateError_GetReason)
- [`PyUnicodeTranslateError_GetStart()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyUnicodeTranslateError_GetStart)
- [`PyUnicodeTranslateError_SetEnd()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyUnicodeTranslateError_SetEnd)
- [`PyUnicodeTranslateError_SetReason()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyUnicodeTranslateError_SetReason)
- [`PyUnicodeTranslateError_SetStart()`](https://python-all.ru/3.15/c-api/exceptions.html#c.PyUnicodeTranslateError_SetStart)
- [`PyUnicode_Append()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_Append)
- [`PyUnicode_AppendAndDel()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_AppendAndDel)
- [`PyUnicode_AsASCIIString()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_AsASCIIString)
- [`PyUnicode_AsCharmapString()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_AsCharmapString)
- [`PyUnicode_AsEncodedString()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_AsEncodedString)
- [`PyUnicode_AsLatin1String()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_AsLatin1String)
- [`PyUnicode_AsMBCSString()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_AsMBCSString)
- [`PyUnicode_AsRawUnicodeEscapeString()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_AsRawUnicodeEscapeString)
- [`PyUnicode_AsUCS4()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_AsUCS4)
- [`PyUnicode_AsUCS4Copy()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_AsUCS4Copy)
- [`PyUnicode_AsUTF16String()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_AsUTF16String)
- [`PyUnicode_AsUTF32String()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_AsUTF32String)
- [`PyUnicode_AsUTF8AndSize()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_AsUTF8AndSize)
- [`PyUnicode_AsUTF8String()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_AsUTF8String)
- [`PyUnicode_AsUnicodeEscapeString()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_AsUnicodeEscapeString)
- [`PyUnicode_AsWideChar()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_AsWideChar)
- [`PyUnicode_AsWideCharString()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_AsWideCharString)
- [`PyUnicode_BuildEncodingMap()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_BuildEncodingMap)
- [`PyUnicode_Compare()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_Compare)
- [`PyUnicode_CompareWithASCIIString()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_CompareWithASCIIString)
- [`PyUnicode_Concat()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_Concat)
- [`PyUnicode_Contains()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_Contains)
- [`PyUnicode_Count()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_Count)
- [`PyUnicode_Decode()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_Decode)
- [`PyUnicode_DecodeASCII()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_DecodeASCII)
- [`PyUnicode_DecodeCharmap()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_DecodeCharmap)
- [`PyUnicode_DecodeCodePageStateful()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_DecodeCodePageStateful)
- [`PyUnicode_DecodeFSDefault()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_DecodeFSDefault)
- [`PyUnicode_DecodeFSDefaultAndSize()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_DecodeFSDefaultAndSize)
- [`PyUnicode_DecodeLatin1()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_DecodeLatin1)
- [`PyUnicode_DecodeLocale()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_DecodeLocale)
- [`PyUnicode_DecodeLocaleAndSize()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_DecodeLocaleAndSize)
- [`PyUnicode_DecodeMBCS()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_DecodeMBCS)
- [`PyUnicode_DecodeMBCSStateful()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_DecodeMBCSStateful)
- [`PyUnicode_DecodeRawUnicodeEscape()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_DecodeRawUnicodeEscape)
- [`PyUnicode_DecodeUTF16()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_DecodeUTF16)
- [`PyUnicode_DecodeUTF16Stateful()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_DecodeUTF16Stateful)
- [`PyUnicode_DecodeUTF32()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_DecodeUTF32)
- [`PyUnicode_DecodeUTF32Stateful()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_DecodeUTF32Stateful)
- [`PyUnicode_DecodeUTF7()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_DecodeUTF7)
- [`PyUnicode_DecodeUTF7Stateful()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_DecodeUTF7Stateful)
- [`PyUnicode_DecodeUTF8()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_DecodeUTF8)
- [`PyUnicode_DecodeUTF8Stateful()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_DecodeUTF8Stateful)
- [`PyUnicode_DecodeUnicodeEscape()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_DecodeUnicodeEscape)
- [`PyUnicode_EncodeCodePage()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_EncodeCodePage)
- [`PyUnicode_EncodeFSDefault()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_EncodeFSDefault)
- [`PyUnicode_EncodeLocale()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_EncodeLocale)
- [`PyUnicode_Equal()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_Equal)
- [`PyUnicode_EqualToUTF8()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_EqualToUTF8)
- [`PyUnicode_EqualToUTF8AndSize()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_EqualToUTF8AndSize)
- [`PyUnicode_FSConverter()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_FSConverter)
- [`PyUnicode_FSDecoder()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_FSDecoder)
- [`PyUnicode_Find()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_Find)
- [`PyUnicode_FindChar()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_FindChar)
- [`PyUnicode_Format()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_Format)
- [`PyUnicode_FromEncodedObject()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_FromEncodedObject)
- [`PyUnicode_FromFormat()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_FromFormat)
- [`PyUnicode_FromFormatV()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_FromFormatV)
- [`PyUnicode_FromObject()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_FromObject)
- [`PyUnicode_FromOrdinal()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_FromOrdinal)
- [`PyUnicode_FromString()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_FromString)
- [`PyUnicode_FromStringAndSize()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_FromStringAndSize)
- [`PyUnicode_FromWideChar()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_FromWideChar)
- [`PyUnicode_GetDefaultEncoding()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_GetDefaultEncoding)
- [`PyUnicode_GetLength()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_GetLength)
- [`PyUnicode_InternFromString()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_InternFromString)
- [`PyUnicode_InternInPlace()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_InternInPlace)
- [`PyUnicode_IsIdentifier()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_IsIdentifier)
- [`PyUnicode_Join()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_Join)
- [`PyUnicode_Partition()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_Partition)
- [`PyUnicode_RPartition()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_RPartition)
- [`PyUnicode_RSplit()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_RSplit)
- [`PyUnicode_ReadChar()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_ReadChar)
- [`PyUnicode_Replace()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_Replace)
- [`PyUnicode_Resize()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_Resize)
- [`PyUnicode_RichCompare()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_RichCompare)
- [`PyUnicode_Split()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_Split)
- [`PyUnicode_Splitlines()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_Splitlines)
- [`PyUnicode_Substring()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_Substring)
- [`PyUnicode_Tailmatch()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_Tailmatch)
- [`PyUnicode_Translate()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_Translate)
- [`PyUnicode_Type`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_Type)
- [`PyUnicode_WriteChar()`](https://python-all.ru/3.15/c-api/unicode.html#c.PyUnicode_WriteChar)
- [`PyVarObject`](https://python-all.ru/3.15/c-api/structures.html#c.PyVarObject)
- [`PyVarObject.ob_base`](https://python-all.ru/3.15/c-api/structures.html#c.PyVarObject.ob_base)
- [`PyVarObject.ob_size`](https://python-all.ru/3.15/c-api/structures.html#c.PyVarObject.ob_size)
- [`PyVectorcall_Call()`](https://python-all.ru/3.15/c-api/call.html#c.PyVectorcall_Call)
- [`PyVectorcall_NARGS()`](https://python-all.ru/3.15/c-api/call.html#c.PyVectorcall_NARGS)
- `PyWeakReference`
- [`PyWeakref_GetRef()`](https://python-all.ru/3.15/c-api/weakref.html#c.PyWeakref_GetRef)
- [`PyWeakref_NewProxy()`](https://python-all.ru/3.15/c-api/weakref.html#c.PyWeakref_NewProxy)
- [`PyWeakref_NewRef()`](https://python-all.ru/3.15/c-api/weakref.html#c.PyWeakref_NewRef)
- [`PyWrapperDescr_Type`](https://python-all.ru/3.15/c-api/descriptor.html#c.PyWrapperDescr_Type)
- [`PyWrapper_New()`](https://python-all.ru/3.15/c-api/descriptor.html#c.PyWrapper_New)
- [`PyZip_Type`](https://python-all.ru/3.15/c-api/iterator.html#c.PyZip_Type)
- [`Py_ASNATIVEBYTES_ALLOW_INDEX`](https://python-all.ru/3.15/c-api/long.html#c.Py_ASNATIVEBYTES_ALLOW_INDEX)
- [`Py_ASNATIVEBYTES_BIG_ENDIAN`](https://python-all.ru/3.15/c-api/long.html#c.Py_ASNATIVEBYTES_BIG_ENDIAN)
- [`Py_ASNATIVEBYTES_DEFAULTS`](https://python-all.ru/3.15/c-api/long.html#c.Py_ASNATIVEBYTES_DEFAULTS)
- [`Py_ASNATIVEBYTES_LITTLE_ENDIAN`](https://python-all.ru/3.15/c-api/long.html#c.Py_ASNATIVEBYTES_LITTLE_ENDIAN)
- [`Py_ASNATIVEBYTES_NATIVE_ENDIAN`](https://python-all.ru/3.15/c-api/long.html#c.Py_ASNATIVEBYTES_NATIVE_ENDIAN)
- [`Py_ASNATIVEBYTES_REJECT_NEGATIVE`](https://python-all.ru/3.15/c-api/long.html#c.Py_ASNATIVEBYTES_REJECT_NEGATIVE)
- [`Py_ASNATIVEBYTES_UNSIGNED_BUFFER`](https://python-all.ru/3.15/c-api/long.html#c.Py_ASNATIVEBYTES_UNSIGNED_BUFFER)
- [`Py_AUDIT_READ`](https://python-all.ru/3.15/c-api/structures.html#c.Py_AUDIT_READ)
- [`Py_AddPendingCall()`](https://python-all.ru/3.15/c-api/threads.html#c.Py_AddPendingCall)
- [`Py_AtExit()`](https://python-all.ru/3.15/c-api/sys.html#c.Py_AtExit)
- [`Py_BEGIN_ALLOW_THREADS`](https://python-all.ru/3.15/c-api/threads.html#c.Py_BEGIN_ALLOW_THREADS)
- [`Py_BEGIN_CRITICAL_SECTION`](https://python-all.ru/3.15/c-api/synchronization.html#c.Py_BEGIN_CRITICAL_SECTION)
- [`Py_BEGIN_CRITICAL_SECTION2`](https://python-all.ru/3.15/c-api/synchronization.html#c.Py_BEGIN_CRITICAL_SECTION2)
- [`Py_BLOCK_THREADS`](https://python-all.ru/3.15/c-api/threads.html#c.Py_BLOCK_THREADS)
- [`Py_BuildValue()`](https://python-all.ru/3.15/c-api/arg.html#c.Py_BuildValue)
- [`Py_BytesMain()`](https://python-all.ru/3.15/c-api/interp-lifecycle.html#c.Py_BytesMain)
- [`Py_CompileString()`](https://python-all.ru/3.15/c-api/veryhigh.html#c.Py_CompileString)
- [`Py_DecRef()`](https://python-all.ru/3.15/c-api/refcounting.html#c.Py_DecRef)
- [`Py_DecodeLocale()`](https://python-all.ru/3.15/c-api/sys.html#c.Py_DecodeLocale)
- [`Py_END_ALLOW_THREADS`](https://python-all.ru/3.15/c-api/threads.html#c.Py_END_ALLOW_THREADS)
- [`Py_END_CRITICAL_SECTION`](https://python-all.ru/3.15/c-api/synchronization.html#c.Py_END_CRITICAL_SECTION)
- [`Py_END_CRITICAL_SECTION2`](https://python-all.ru/3.15/c-api/synchronization.html#c.Py_END_CRITICAL_SECTION2)
- [`Py_EncodeLocale()`](https://python-all.ru/3.15/c-api/sys.html#c.Py_EncodeLocale)
- [`Py_EndInterpreter()`](https://python-all.ru/3.15/c-api/subinterpreters.html#c.Py_EndInterpreter)
- [`Py_EnterRecursiveCall()`](https://python-all.ru/3.15/c-api/exceptions.html#c.Py_EnterRecursiveCall)
- [`Py_Exit()`](https://python-all.ru/3.15/c-api/sys.html#c.Py_Exit)
- [`Py_FatalError()`](https://python-all.ru/3.15/c-api/sys.html#c.Py_FatalError)
- `Py_FileSystemDefaultEncodeErrors`
- `Py_FileSystemDefaultEncoding`
- [`Py_Finalize()`](https://python-all.ru/3.15/c-api/interp-lifecycle.html#c.Py_Finalize)
- [`Py_FinalizeEx()`](https://python-all.ru/3.15/c-api/interp-lifecycle.html#c.Py_FinalizeEx)
- [`Py_GenericAlias()`](https://python-all.ru/3.15/c-api/typehints.html#c.Py_GenericAlias)
- [`Py_GenericAliasType`](https://python-all.ru/3.15/c-api/typehints.html#c.Py_GenericAliasType)
- [`Py_GetBuildInfo()`](https://python-all.ru/3.15/c-api/interp-lifecycle.html#c.Py_GetBuildInfo)
- [`Py_GetCompiler()`](https://python-all.ru/3.15/c-api/interp-lifecycle.html#c.Py_GetCompiler)
- [`Py_GetConstant()`](https://python-all.ru/3.15/c-api/object.html#c.Py_GetConstant)
- [`Py_GetConstantBorrowed()`](https://python-all.ru/3.15/c-api/object.html#c.Py_GetConstantBorrowed)
- [`Py_GetCopyright()`](https://python-all.ru/3.15/c-api/interp-lifecycle.html#c.Py_GetCopyright)
- [`Py_GetPlatform()`](https://python-all.ru/3.15/c-api/interp-lifecycle.html#c.Py_GetPlatform)
- [`Py_GetRecursionLimit()`](https://python-all.ru/3.15/c-api/exceptions.html#c.Py_GetRecursionLimit)
- [`Py_GetVersion()`](https://python-all.ru/3.15/c-api/interp-lifecycle.html#c.Py_GetVersion)
- `Py_HasFileSystemDefaultEncoding`
- [`Py_IS_TYPE()`](https://python-all.ru/3.15/c-api/structures.html#c.Py_IS_TYPE)
- [`Py_IncRef()`](https://python-all.ru/3.15/c-api/refcounting.html#c.Py_IncRef)
- [`Py_Initialize()`](https://python-all.ru/3.15/c-api/interp-lifecycle.html#c.Py_Initialize)
- [`Py_InitializeEx()`](https://python-all.ru/3.15/c-api/interp-lifecycle.html#c.Py_InitializeEx)
- [`Py_Is()`](https://python-all.ru/3.15/c-api/structures.html#c.Py_Is)
- [`Py_IsFalse()`](https://python-all.ru/3.15/c-api/structures.html#c.Py_IsFalse)
- [`Py_IsFinalizing()`](https://python-all.ru/3.15/c-api/interp-lifecycle.html#c.Py_IsFinalizing)
- [`Py_IsInitialized()`](https://python-all.ru/3.15/c-api/interp-lifecycle.html#c.Py_IsInitialized)
- [`Py_IsNone()`](https://python-all.ru/3.15/c-api/structures.html#c.Py_IsNone)
- [`Py_IsTrue()`](https://python-all.ru/3.15/c-api/structures.html#c.Py_IsTrue)
- [`Py_LeaveRecursiveCall()`](https://python-all.ru/3.15/c-api/exceptions.html#c.Py_LeaveRecursiveCall)
- [`Py_Main()`](https://python-all.ru/3.15/c-api/interp-lifecycle.html#c.Py_Main)
- [`Py_MakePendingCalls()`](https://python-all.ru/3.15/c-api/threads.html#c.Py_MakePendingCalls)
- [`Py_NewInterpreter()`](https://python-all.ru/3.15/c-api/subinterpreters.html#c.Py_NewInterpreter)
- [`Py_NewRef()`](https://python-all.ru/3.15/c-api/refcounting.html#c.Py_NewRef)
- [`Py_PACK_FULL_VERSION()`](https://python-all.ru/3.15/c-api/apiabiversion.html#c.Py_PACK_FULL_VERSION)
- [`Py_PACK_VERSION()`](https://python-all.ru/3.15/c-api/apiabiversion.html#c.Py_PACK_VERSION)
- [`Py_READONLY`](https://python-all.ru/3.15/c-api/structures.html#c.Py_READONLY)
- [`Py_REFCNT()`](https://python-all.ru/3.15/c-api/refcounting.html#c.Py_REFCNT)
- [`Py_RELATIVE_OFFSET`](https://python-all.ru/3.15/c-api/structures.html#c.Py_RELATIVE_OFFSET)
- [`Py_ReprEnter()`](https://python-all.ru/3.15/c-api/exceptions.html#c.Py_ReprEnter)
- [`Py_ReprLeave()`](https://python-all.ru/3.15/c-api/exceptions.html#c.Py_ReprLeave)
- [`Py_SET_SIZE()`](https://python-all.ru/3.15/c-api/structures.html#c.Py_SET_SIZE)
- [`Py_SIZE()`](https://python-all.ru/3.15/c-api/structures.html#c.Py_SIZE)
- [`Py_SetProgramName()`](https://python-all.ru/3.15/c-api/interp-lifecycle.html#c.Py_SetProgramName)
- [`Py_SetPythonHome()`](https://python-all.ru/3.15/c-api/interp-lifecycle.html#c.Py_SetPythonHome)
- [`Py_SetRecursionLimit()`](https://python-all.ru/3.15/c-api/exceptions.html#c.Py_SetRecursionLimit)
- [`Py_TPFLAGS_BASETYPE`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_TPFLAGS_BASETYPE)
- [`Py_TPFLAGS_DEFAULT`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_TPFLAGS_DEFAULT)
- [`Py_TPFLAGS_HAVE_GC`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_TPFLAGS_HAVE_GC)
- [`Py_TPFLAGS_HAVE_VECTORCALL`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_TPFLAGS_HAVE_VECTORCALL)
- [`Py_TPFLAGS_ITEMS_AT_END`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_TPFLAGS_ITEMS_AT_END)
- [`Py_TPFLAGS_METHOD_DESCRIPTOR`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_TPFLAGS_METHOD_DESCRIPTOR)
- [`Py_TP_USE_SPEC`](https://python-all.ru/3.15/c-api/type.html#c.Py_TP_USE_SPEC)
- [`Py_TYPE()`](https://python-all.ru/3.15/c-api/structures.html#c.Py_TYPE)
- [`Py_T_BOOL`](https://python-all.ru/3.15/c-api/structures.html#c.Py_T_BOOL)
- [`Py_T_BYTE`](https://python-all.ru/3.15/c-api/structures.html#c.Py_T_BYTE)
- [`Py_T_CHAR`](https://python-all.ru/3.15/c-api/structures.html#c.Py_T_CHAR)
- [`Py_T_DOUBLE`](https://python-all.ru/3.15/c-api/structures.html#c.Py_T_DOUBLE)
- [`Py_T_FLOAT`](https://python-all.ru/3.15/c-api/structures.html#c.Py_T_FLOAT)
- [`Py_T_INT`](https://python-all.ru/3.15/c-api/structures.html#c.Py_T_INT)
- [`Py_T_LONG`](https://python-all.ru/3.15/c-api/structures.html#c.Py_T_LONG)
- [`Py_T_LONGLONG`](https://python-all.ru/3.15/c-api/structures.html#c.Py_T_LONGLONG)
- [`Py_T_OBJECT_EX`](https://python-all.ru/3.15/c-api/structures.html#c.Py_T_OBJECT_EX)
- [`Py_T_PYSSIZET`](https://python-all.ru/3.15/c-api/structures.html#c.Py_T_PYSSIZET)
- [`Py_T_SHORT`](https://python-all.ru/3.15/c-api/structures.html#c.Py_T_SHORT)
- [`Py_T_STRING`](https://python-all.ru/3.15/c-api/structures.html#c.Py_T_STRING)
- [`Py_T_STRING_INPLACE`](https://python-all.ru/3.15/c-api/structures.html#c.Py_T_STRING_INPLACE)
- [`Py_T_UBYTE`](https://python-all.ru/3.15/c-api/structures.html#c.Py_T_UBYTE)
- [`Py_T_UINT`](https://python-all.ru/3.15/c-api/structures.html#c.Py_T_UINT)
- [`Py_T_ULONG`](https://python-all.ru/3.15/c-api/structures.html#c.Py_T_ULONG)
- [`Py_T_ULONGLONG`](https://python-all.ru/3.15/c-api/structures.html#c.Py_T_ULONGLONG)
- [`Py_T_USHORT`](https://python-all.ru/3.15/c-api/structures.html#c.Py_T_USHORT)
- [`Py_UCS4`](https://python-all.ru/3.15/c-api/unicode.html#c.Py_UCS4)
- [`Py_UNBLOCK_THREADS`](https://python-all.ru/3.15/c-api/threads.html#c.Py_UNBLOCK_THREADS)
- `Py_UTF8Mode`
- [`Py_VaBuildValue()`](https://python-all.ru/3.15/c-api/arg.html#c.Py_VaBuildValue)
- [`Py_Version`](https://python-all.ru/3.15/c-api/apiabiversion.html#c.Py_Version)
- [`Py_XNewRef()`](https://python-all.ru/3.15/c-api/refcounting.html#c.Py_XNewRef)
- [`Py_am_aiter`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_am_aiter)
- [`Py_am_anext`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_am_anext)
- [`Py_am_await`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_am_await)
- [`Py_am_send`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_am_send)
- [`Py_bf_getbuffer`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_bf_getbuffer)
- [`Py_bf_releasebuffer`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_bf_releasebuffer)
- [`Py_buffer`](https://python-all.ru/3.15/c-api/buffer.html#c.Py_buffer)
- `Py_intptr_t`
- [`Py_mod_abi`](https://python-all.ru/3.15/c-api/module.html#c.Py_mod_abi)
- [`Py_mod_create`](https://python-all.ru/3.15/c-api/module.html#c.Py_mod_create)
- [`Py_mod_doc`](https://python-all.ru/3.15/c-api/module.html#c.Py_mod_doc)
- [`Py_mod_exec`](https://python-all.ru/3.15/c-api/module.html#c.Py_mod_exec)
- [`Py_mod_gil`](https://python-all.ru/3.15/c-api/module.html#c.Py_mod_gil)
- [`Py_mod_methods`](https://python-all.ru/3.15/c-api/module.html#c.Py_mod_methods)
- [`Py_mod_multiple_interpreters`](https://python-all.ru/3.15/c-api/module.html#c.Py_mod_multiple_interpreters)
- [`Py_mod_name`](https://python-all.ru/3.15/c-api/module.html#c.Py_mod_name)
- [`Py_mod_slots`](https://python-all.ru/3.15/c-api/module.html#c.Py_mod_slots)
- [`Py_mod_state_clear`](https://python-all.ru/3.15/c-api/module.html#c.Py_mod_state_clear)
- [`Py_mod_state_free`](https://python-all.ru/3.15/c-api/module.html#c.Py_mod_state_free)
- [`Py_mod_state_size`](https://python-all.ru/3.15/c-api/module.html#c.Py_mod_state_size)
- [`Py_mod_state_traverse`](https://python-all.ru/3.15/c-api/module.html#c.Py_mod_state_traverse)
- [`Py_mod_token`](https://python-all.ru/3.15/c-api/module.html#c.Py_mod_token)
- [`Py_mp_ass_subscript`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_mp_ass_subscript)
- [`Py_mp_length`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_mp_length)
- [`Py_mp_subscript`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_mp_subscript)
- [`Py_nb_absolute`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_absolute)
- [`Py_nb_add`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_add)
- [`Py_nb_and`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_and)
- [`Py_nb_bool`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_bool)
- [`Py_nb_divmod`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_divmod)
- [`Py_nb_float`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_float)
- [`Py_nb_floor_divide`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_floor_divide)
- [`Py_nb_index`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_index)
- [`Py_nb_inplace_add`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_inplace_add)
- [`Py_nb_inplace_and`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_inplace_and)
- [`Py_nb_inplace_floor_divide`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_inplace_floor_divide)
- [`Py_nb_inplace_lshift`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_inplace_lshift)
- [`Py_nb_inplace_matrix_multiply`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_inplace_matrix_multiply)
- [`Py_nb_inplace_multiply`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_inplace_multiply)
- [`Py_nb_inplace_or`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_inplace_or)
- [`Py_nb_inplace_power`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_inplace_power)
- [`Py_nb_inplace_remainder`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_inplace_remainder)
- [`Py_nb_inplace_rshift`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_inplace_rshift)
- [`Py_nb_inplace_subtract`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_inplace_subtract)
- [`Py_nb_inplace_true_divide`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_inplace_true_divide)
- [`Py_nb_inplace_xor`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_inplace_xor)
- [`Py_nb_int`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_int)
- [`Py_nb_invert`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_invert)
- [`Py_nb_lshift`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_lshift)
- [`Py_nb_matrix_multiply`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_matrix_multiply)
- [`Py_nb_multiply`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_multiply)
- [`Py_nb_negative`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_negative)
- [`Py_nb_or`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_or)
- [`Py_nb_positive`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_positive)
- [`Py_nb_power`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_power)
- [`Py_nb_remainder`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_remainder)
- [`Py_nb_rshift`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_rshift)
- [`Py_nb_subtract`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_subtract)
- [`Py_nb_true_divide`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_true_divide)
- [`Py_nb_xor`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_nb_xor)
- [`Py_slot_end`](https://python-all.ru/3.15/c-api/slots.html#c.Py_slot_end)
- [`Py_slot_invalid`](https://python-all.ru/3.15/c-api/slots.html#c.Py_slot_invalid)
- [`Py_slot_subslots`](https://python-all.ru/3.15/c-api/slots.html#c.Py_slot_subslots)
- [`Py_sq_ass_item`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_sq_ass_item)
- [`Py_sq_concat`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_sq_concat)
- [`Py_sq_contains`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_sq_contains)
- [`Py_sq_inplace_concat`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_sq_inplace_concat)
- [`Py_sq_inplace_repeat`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_sq_inplace_repeat)
- [`Py_sq_item`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_sq_item)
- [`Py_sq_length`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_sq_length)
- [`Py_sq_repeat`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_sq_repeat)
- [`Py_ssize_t`](https://python-all.ru/3.15/c-api/intro.html#c.Py_ssize_t)
- [`Py_tp_alloc`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_tp_alloc)
- [`Py_tp_base`](https://python-all.ru/3.15/c-api/type.html#c.Py_tp_base)
- [`Py_tp_bases`](https://python-all.ru/3.15/c-api/type.html#c.Py_tp_bases)
- [`Py_tp_basicsize`](https://python-all.ru/3.15/c-api/type.html#c.Py_tp_basicsize)
- [`Py_tp_call`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_tp_call)
- [`Py_tp_clear`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_tp_clear)
- [`Py_tp_dealloc`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_tp_dealloc)
- [`Py_tp_del`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_tp_del)
- [`Py_tp_descr_get`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_tp_descr_get)
- [`Py_tp_descr_set`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_tp_descr_set)
- [`Py_tp_doc`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_tp_doc)
- [`Py_tp_extra_basicsize`](https://python-all.ru/3.15/c-api/type.html#c.Py_tp_extra_basicsize)
- [`Py_tp_finalize`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_tp_finalize)
- [`Py_tp_flags`](https://python-all.ru/3.15/c-api/type.html#c.Py_tp_flags)
- [`Py_tp_free`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_tp_free)
- [`Py_tp_getattr`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_tp_getattr)
- [`Py_tp_getattro`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_tp_getattro)
- [`Py_tp_getset`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_tp_getset)
- [`Py_tp_hash`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_tp_hash)
- [`Py_tp_init`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_tp_init)
- [`Py_tp_is_gc`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_tp_is_gc)
- [`Py_tp_itemsize`](https://python-all.ru/3.15/c-api/type.html#c.Py_tp_itemsize)
- [`Py_tp_iter`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_tp_iter)
- [`Py_tp_iternext`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_tp_iternext)
- [`Py_tp_members`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_tp_members)
- [`Py_tp_metaclass`](https://python-all.ru/3.15/c-api/type.html#c.Py_tp_metaclass)
- [`Py_tp_methods`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_tp_methods)
- [`Py_tp_module`](https://python-all.ru/3.15/c-api/type.html#c.Py_tp_module)
- [`Py_tp_name`](https://python-all.ru/3.15/c-api/type.html#c.Py_tp_name)
- [`Py_tp_new`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_tp_new)
- [`Py_tp_repr`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_tp_repr)
- [`Py_tp_richcompare`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_tp_richcompare)
- [`Py_tp_setattr`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_tp_setattr)
- [`Py_tp_setattro`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_tp_setattro)
- [`Py_tp_slots`](https://python-all.ru/3.15/c-api/type.html#c.Py_tp_slots)
- [`Py_tp_str`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_tp_str)
- [`Py_tp_token`](https://python-all.ru/3.15/c-api/type.html#c.Py_tp_token)
- [`Py_tp_traverse`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_tp_traverse)
- [`Py_tp_vectorcall`](https://python-all.ru/3.15/c-api/typeobj.html#c.Py_tp_vectorcall)
- `Py_uintptr_t`
- [`allocfunc`](https://python-all.ru/3.15/c-api/typeobj.html#c.allocfunc)
- [`binaryfunc`](https://python-all.ru/3.15/c-api/typeobj.html#c.binaryfunc)
- [`descrgetfunc`](https://python-all.ru/3.15/c-api/typeobj.html#c.descrgetfunc)
- [`descrsetfunc`](https://python-all.ru/3.15/c-api/typeobj.html#c.descrsetfunc)
- [`destructor`](https://python-all.ru/3.15/c-api/typeobj.html#c.destructor)
- [`getattrfunc`](https://python-all.ru/3.15/c-api/typeobj.html#c.getattrfunc)
- [`getattrofunc`](https://python-all.ru/3.15/c-api/typeobj.html#c.getattrofunc)
- [`getbufferproc`](https://python-all.ru/3.15/c-api/typeobj.html#c.getbufferproc)
- [`getiterfunc`](https://python-all.ru/3.15/c-api/typeobj.html#c.getiterfunc)
- [`getter`](https://python-all.ru/3.15/c-api/structures.html#c.getter)
- [`hashfunc`](https://python-all.ru/3.15/c-api/typeobj.html#c.hashfunc)
- [`initproc`](https://python-all.ru/3.15/c-api/typeobj.html#c.initproc)
- [`inquiry`](https://python-all.ru/3.15/c-api/gcsupport.html#c.inquiry)
- [`iternextfunc`](https://python-all.ru/3.15/c-api/typeobj.html#c.iternextfunc)
- [`lenfunc`](https://python-all.ru/3.15/c-api/typeobj.html#c.lenfunc)
- [`newfunc`](https://python-all.ru/3.15/c-api/typeobj.html#c.newfunc)
- [`objobjargproc`](https://python-all.ru/3.15/c-api/typeobj.html#c.objobjargproc)
- [`objobjproc`](https://python-all.ru/3.15/c-api/typeobj.html#c.objobjproc)
- [`releasebufferproc`](https://python-all.ru/3.15/c-api/typeobj.html#c.releasebufferproc)
- [`reprfunc`](https://python-all.ru/3.15/c-api/typeobj.html#c.reprfunc)
- [`richcmpfunc`](https://python-all.ru/3.15/c-api/typeobj.html#c.richcmpfunc)
- [`setattrfunc`](https://python-all.ru/3.15/c-api/typeobj.html#c.setattrfunc)
- [`setattrofunc`](https://python-all.ru/3.15/c-api/typeobj.html#c.setattrofunc)
- [`setter`](https://python-all.ru/3.15/c-api/structures.html#c.setter)
- [`ssizeargfunc`](https://python-all.ru/3.15/c-api/typeobj.html#c.ssizeargfunc)
- [`ssizeobjargproc`](https://python-all.ru/3.15/c-api/typeobj.html#c.ssizeobjargproc)
- `ssizessizeargfunc`
- `ssizessizeobjargproc`
- `symtable`
- [`ternaryfunc`](https://python-all.ru/3.15/c-api/typeobj.html#c.ternaryfunc)
- [`traverseproc`](https://python-all.ru/3.15/c-api/gcsupport.html#c.traverseproc)
- [`unaryfunc`](https://python-all.ru/3.15/c-api/typeobj.html#c.unaryfunc)
- [`vectorcallfunc`](https://python-all.ru/3.15/c-api/call.html#c.vectorcallfunc)
- [`visitproc`](https://python-all.ru/3.15/c-api/gcsupport.html#c.visitproc)
