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

stable.md

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

1> **Источник:** https://python-all.ru/3.16/c-api/stable.html2>3> «Документация Python на русском» – неофициальный перевод официальной документации Python: версии от 2.6 до 3.16, полнотекстовый поиск, английский оригинал рядом с переводом. Эта Markdown-версия страницы предназначена для работы с LLM: вставьте её в ChatGPT, Claude или Cursor.45---67# Стабильность C API и ABI89Если не указано иное, C API Python подпадает под политику обратной совместимости [**PEP 387**](https://python-all.ru/3.16/c-api/stable.html). Большинство изменений в нём совместимы на уровне исходного кода (как правило, только за счёт добавления нового API). Изменение существующего API или его удаление производится только после периода устаревания или для исправления серьёзных проблем.1011Двоичный интерфейс приложений (ABI) CPython совместим вперёд и назад в пределах одного минорного выпуска (при условии одинаковой компиляции; см. [Особенности платформ](https://python-all.ru/3.16/c-api/stable.html#stable-abi-platform) ниже). Таким образом, код, скомпилированный для Python 3.10.0, будет работать на 3.10.8 и наоборот, но его потребуется перекомпилировать для 3.9.x и 3.11.x.1213Существует два уровня C API с разными ожиданиями стабильности:1415- [Нестабильный API](https://python-all.ru/3.16/c-api/stable.html#unstable-c-api), может изменяться в минорных версиях без периода устаревания. Он помечается префиксом `PyUnstable` в именах.16- [Ограниченный API](https://python-all.ru/3.16/c-api/stable.html#limited-c-api), совместим на протяжении нескольких минорных выпусков. Когда определён [`Py_LIMITED_API`](https://python-all.ru/3.16/c-api/stable.html#c.Py_LIMITED_API), из `Python.h` предоставляется только это подмножество.1718Они более подробно рассматриваются ниже.1920Имена с префиксом подчёркивания, такие как `_Py_InternalState`, являются закрытым API, который может изменяться без уведомления даже в патч-релизах. Если вам необходимо использовать этот API, рассмотрите возможность обращения к [разработчикам CPython](https://python-all.ru/3.16/c-api/stable.html) для обсуждения добавления публичного API для вашего сценария использования.2122## Нестабильный C API2324Любой API, имя которого начинается с префикса `PyUnstable`, раскрывает детали реализации CPython и может меняться в каждом минорном выпуске (например, с 3.9 до 3.10) без каких-либо предупреждений об устаревании. Однако он не будет меняться в исправляющем выпуске (например, с 3.10.0 до 3.10.1).2526Он в основном предназначен для специализированных низкоуровневых инструментов, таких как отладчики.2728Ожидается, что проекты, использующие этот API, будут следить за разработкой CPython и прилагать дополнительные усилия для адаптации к изменениям.2930## Стабильные двоичные интерфейсы приложений3132*Стабильный ABI* Python позволяет расширениям быть совместимыми с несколькими версиями Python без перекомпиляции.3334> **Примечание**35>36> Для простоты в этом документе говорится о *расширениях*, но Stable ABI работает одинаково для всех случаев использования API – например, для встраивания Python.3738Существует два стабильных ABI:3940- `abi3`, представленный в Python 3.2, совместим с **не**-[свободно-поточными](https://python-all.ru/3.16/glossary.html#term-free-threaded-build) сборками CPython.41- `abi3t`, представленный в Python 3.15, совместим с [свободно-поточными](https://python-all.ru/3.16/glossary.html#term-free-threaded-build) сборками CPython. Он имеет более строгие ограничения API, чем `abi3`.4243  > Добавлено в версии 3.15: `abi3t` был добавлен в [**PEP 803**](https://python-all.ru/3.16/c-api/stable.html)4445Расширение может быть скомпилировано одновременно как для *обоих* `abi3`, так и для `abi3t`; результат будет совместим как со свободно-поточными, так и с не-свободно-поточными сборками Python. В настоящее время это не имеет недостатков по сравнению с компиляцией только для `abi3t`.4647Каждый стабильный ABI версионируется с использованием первых двух чисел версии Python. Например, Stable ABI 3.14 соответствует Python 3.14. Расширение, скомпилированное для Stable ABI 3.x, совместимо по ABI с Python 3.x и выше.4849Расширения, нацеленные на стабильный ABI, должны использовать только ограниченное подмножество C API. Это подмножество известно как *Ограниченный API*; его содержимое [перечислено ниже](https://python-all.ru/3.16/c-api/stable.html#limited-api-list).5051В Windows расширения, использующие стабильный ABI, должны компоноваться с `python3.dll`, а не с версионно-зависимой библиотекой, такой как `python39.dll`. Эта библиотека предоставляет только соответствующие символы.5253На некоторых платформах Python ищет и загружает файлы разделяемых библиотек с тегом `abi3` или `abi3t` (например, `mymodule.abi3.so`). [Свободно-поточные](https://python-all.ru/3.16/glossary.html#term-free-threaded-build) интерпретаторы распознают только тег `abi3t`, в то время как несвободно-поточные будут предпочитать `abi3`, но переключаться на `abi3t`. Таким образом, расширения, совместимые с обоими ABI, должны использовать тег `abi3t`.5455Python не обязательно проверяет, что загружаемые им расширения имеют совместимый ABI. Авторам расширений рекомендуется добавить проверку с помощью слота [`Py_mod_abi`](https://python-all.ru/3.16/c-api/module.html#c.Py_mod_abi) или функции [`PyABIInfo_Check()`](https://python-all.ru/3.16/c-api/stable.html#c.PyABIInfo_Check), но конечный пользователь (или его инструмент сборки пакетов) несёт ответственность за то, чтобы, например, расширения, собранные для Stable ABI 3.10, не были установлены для более низких версий Python.5657Все функции в Stable ABI присутствуют как функции в разделяемой библиотеке Python, а не только как макросы. Это делает их доступными в языках, которые не используют препроцессор C, включая [`ctypes`](https://python-all.ru/3.16/library/ctypes.html#module-ctypes) Python.5859### Компиляция для стабильного ABI6061> **Примечание**62>63> Инструменты сборки (такие как, например, meson-python, scikit-build-core или Setuptools) часто имеют механизм для установки макросов и их синхронизации с именами файлов расширений и другими метаданными. Если такой механизм существует, предпочтительнее использовать его, а не определять макросы вручную.64>65> Оставшаяся часть раздела в основном предназначена для разработчиков инструментов и тех, кто компилирует расширения вручную.66>67> > **См. также**68> >69> > [список рекомендуемых инструментов](https://python-all.ru/3.16/c-api/stable.html) в Python Packaging User Guide7071Чтобы скомпилировать для Stable ABI, определите один или оба следующих макроса, указав самую старую версию Python, которую должно поддерживать ваше расширение, в формате [`Py_PACK_VERSION`](https://python-all.ru/3.16/c-api/apiabiversion.html#c.Py_PACK_VERSION). Обычно выбирают конкретное значение, а не версию заголовочных файлов Python, с которыми выполняется компиляция.7273Макросы должны быть определены до включения `Python.h`. Поскольку [`Py_PACK_VERSION`](https://python-all.ru/3.16/c-api/apiabiversion.html#c.Py_PACK_VERSION) на этом этапе недоступен, необходимо напрямую использовать числовое значение. Для справки приведены значения для нескольких последних версий Python:7475```c760x30b0000  /* Py_PACK_VERSION(3,11) */770x30c0000  /* Py_PACK_VERSION(3,12) */780x30d0000  /* Py_PACK_VERSION(3,13) */790x30e0000  /* Py_PACK_VERSION(3,14) */800x30f0000  /* Py_PACK_VERSION(3,15) */810x3100000  /* Py_PACK_VERSION(3,16) */82```8384Когда определён один из макросов, `Python.h` будет предоставлять только API, совместимый с заданным Stable ABI – то есть [Limited API](https://python-all.ru/3.16/c-api/stable.html#limited-api-list) плюс некоторые определения, которые должны быть видны компилятору, но не должны использоваться напрямую. Когда определены оба, `Python.h` будет предоставлять API, совместимый с обоими Stable ABI.8586#### `Py_LIMITED_API`8788Целевой `abi3`, то есть сборки CPython без [свободной многопоточности](https://python-all.ru/3.16/glossary.html#term-free-threaded-build). Общие сведения см. в [выше](https://python-all.ru/3.16/c-api/stable.html#abi3-compiling).8990#### `Py_TARGET_ABI3T`9192Целевой `abi3t`, то есть [сборки CPython со свободной многопоточностью](https://python-all.ru/3.16/glossary.html#term-free-threaded-build). Общие сведения см. в [выше](https://python-all.ru/3.16/c-api/stable.html#abi3-compiling).9394Добавлено в версии 3.15.9596Оба макроса задают целевой ABI; разный стиль именования обусловлен обратной совместимостью.9798> **Историческая справка**99>100> Можно также определить `Py_LIMITED_API` как `3`. Это работает так же, как `0x03020000` (Python 3.2 – версия, в которой появился Stable ABI).101102Когда определены оба, `Python.h` может переопределить `Py_LIMITED_API` в соответствии с `Py_TARGET_ABI3T`, а может и не переопределить.103104В [сборке со свободной многопоточностью](https://python-all.ru/3.16/glossary.html#term-free-threaded-build) – то есть когда определён [`Py_GIL_DISABLED`](https://python-all.ru/3.16/using/configure.html#c.Py_GIL_DISABLED) – `Py_TARGET_ABI3T` по умолчанию принимает значение `Py_LIMITED_API`. Это означает, что есть два способа сборки для обоих `abi3` и `abi3t`:105106- определить оба `Py_LIMITED_API` и `Py_TARGET_ABI3T`, или107- определить только `Py_LIMITED_API` и:108109  - в Windows определить `Py_GIL_DISABLED`;110  - в других системах использовать заголовочные файлы сборки Python со свободной многопоточностью.111112### Область применения Stable ABI и производительность113114Цель Stable ABI – разрешить всё, что возможно с полным C API, но, возможно, с потерей производительности. В целом совместимость со Stable ABI потребует некоторых изменений в исходном коде расширения.115116Например, хотя [`PyList_GetItem()`](https://python-all.ru/3.16/c-api/list.html#c.PyList_GetItem) доступен, его «небезопасный» макрос-вариант [`PyList_GET_ITEM()`](https://python-all.ru/3.16/c-api/list.html#c.PyList_GET_ITEM) – нет. Макрос может быть быстрее, поскольку он может полагаться на версионные детали реализации объекта списка.117118Другой пример: при компиляции *не* для Stable ABI некоторые функции C API встраиваются или заменяются макросами. Компиляция для Stable ABI отключает такое встраивание, обеспечивая стабильность по мере улучшения структур данных Python, но возможно снижая производительность.119120Если не определять `Py_LIMITED_API` или `Py_TARGET_ABI3T`, можно скомпилировать совместимый со Stable ABI исходный код для версионного ABI. Тогда можно распространять потенциально более быстрое версионное расширение вместе с версией, скомпилированной для Stable ABI – более медленным, но более совместимым запасным вариантом.121122### Предостережения о Stable ABI123124Обратите внимание: компиляция для Stable ABI *не* является полной гарантией совместимости кода с ожидаемыми версиями Python. Stable ABI предотвращает проблемы с *ABI*, такие как ошибки компоновки из-за отсутствия символов или повреждение данных из-за изменений в структуре или сигнатурах функций. Однако другие изменения в Python могут изменить *поведение* расширений.125126Одна из проблем, от которой макросы [`Py_TARGET_ABI3T`](https://python-all.ru/3.16/c-api/stable.html#c.Py_TARGET_ABI3T) и [`Py_LIMITED_API`](https://python-all.ru/3.16/c-api/stable.html#c.Py_LIMITED_API) не защищают, – это вызов функции с аргументами, которые недопустимы в более старой версии Python. Например, рассмотрим функцию, которая начинает принимать `NULL` в качестве аргумента. В Python 3.9 `NULL` теперь выбирает поведение по умолчанию, но в Python 3.8 аргумент будет использоваться напрямую, что приведёт к разыменованию `NULL` и сбою. Аналогичная логика применима к полям структур.127128По этим причинам мы рекомендуем тестировать расширение со *всеми* поддерживаемыми минорными версиями Python.129130Также рекомендуем просмотреть документацию по всем используемым API, чтобы проверить, входят ли они явно в Limited API. Даже при определённом `Py_LIMITED_API` некоторые частные объявления открываются по техническим причинам (или даже непреднамеренно, как ошибки).131132Также учтите: хотя компиляция с `Py_LIMITED_API` 3.8 означает, что расширение должно *загружаться* в Python 3.12 и *компилироваться* с Python 3.12, тот же исходный код не обязательно скомпилируется с `Py_LIMITED_API`, установленным в 3.12. В целом части Limited API могут быть объявлены устаревшими и удалены при условии, что Stable ABI остаётся стабильным.133134## Особенности платформ135136Стабильность ABI зависит не только от Python, но и от используемого компилятора, низкоуровневых библиотек и параметров компиляции. Для целей [стабильных ABI](https://python-all.ru/3.16/c-api/stable.html#stable-abi) эти детали определяют «платформу». Обычно они зависят от типа ОС и архитектуры процессора.137138Ответственность каждого конкретного распространителя Python – обеспечить, чтобы все версии Python на определённой платформе были собраны таким образом, чтобы не нарушать стабильные ABI или версионные ABI. Это справедливо для выпусков Windows и macOS от `python.org` и многих сторонних распространителей.139140## Проверка ABI141142Добавлено в версии 3.15.143144Python включает элементарную проверку совместимости ABI.145146Эта проверка не является всеобъемлющей. Она лишь защищает от распространённых случаев установки несовместимых модулей для неподходящего интерпретатора. Она также не учитывает [несовместимости платформ](https://python-all.ru/3.16/c-api/stable.html#stable-abi-platform). Она может быть выполнена только после успешной загрузки расширения.147148Несмотря на эти ограничения, рекомендуется, чтобы модули расширений использовали этот механизм, чтобы обнаружимые несовместимости вызывали исключения, а не приводили к краху.149150Большинство модулей могут использовать эту проверку через слот [`Py_mod_abi`](https://python-all.ru/3.16/c-api/module.html#c.Py_mod_abi) и макрос [`PyABIInfo_VAR`](https://python-all.ru/3.16/c-api/stable.html#c.PyABIInfo_VAR), например так:151152```c153PyABIInfo_VAR(abi_info);154155static PyModuleDef_Slot mymodule_slots[] = {156   {Py_mod_abi, &abi_info},157   ...158};159```160161Полное API описано ниже для продвинутых случаев использования.162163#### `int PyABIInfo_Check(PyABIInfo *info, const char *module_name)`164165*Часть [Stable ABI](https://python-all.ru/3.16/c-api/stable.html#stable) начиная с версии 3.15.*166167Проверяет, что переданный *info* совместим с текущим запущенным интерпретатором.168169Возвращает 0 при успехе. В случае неудачи возбуждает исключение и возвращает -1.170171Если ABI несовместим, возбуждённое исключение будет [`ImportError`](https://python-all.ru/3.16/library/exceptions.html#ImportError).172173Аргумент *module\_name* может быть `NULL` или указывать на NUL-терминированную строку в кодировке UTF-8, используемую для сообщений об ошибках.174175Обратите внимание: если *info* описывает ABI, используемый текущим кодом (как определено [`PyABIInfo_VAR`](https://python-all.ru/3.16/c-api/stable.html#c.PyABIInfo_VAR), например), использование любого другого API Python C может привести к крахам. В частности, небезопасно исследовать возбуждённое исключение.176177Добавлено в версии 3.15.178179#### `PyABIInfo_VAR(NAME)`180181*Часть [Stable ABI](https://python-all.ru/3.16/c-api/stable.html#stable) начиная с версии 3.15.*182183Определяет статическую переменную [`PyABIInfo`](https://python-all.ru/3.16/c-api/stable.html#c.PyABIInfo) с заданным *NAME*, которая описывает ABI, который будет использоваться текущим кодом. Этот макрос раскрывается в:184185```c186static PyABIInfo NAME = {187    1, 0,188    PyABIInfo_DEFAULT_FLAGS,189    PY_VERSION_HEX,190    PyABIInfo_DEFAULT_ABI_VERSION191}192```193194Добавлено в версии 3.15.195196#### `type PyABIInfo`197198*Часть [Stable ABI](https://python-all.ru/3.16/c-api/stable.html#stable) (включая все члены) начиная с версии 3.15.*199200#### `uint8_t abiinfo_major_version`201202Главная версия [`PyABIInfo`](https://python-all.ru/3.16/c-api/stable.html#c.PyABIInfo). Может быть установлена в:203204- `0` для пропуска всех проверок, или205- `1` для указания этой версии `PyABIInfo`.206207#### `uint8_t abiinfo_minor_version`208209Минорная версия [`PyABIInfo`](https://python-all.ru/3.16/c-api/stable.html#c.PyABIInfo). Должна быть установлена в `0`; бо́льшие значения зарезервированы для обратно совместимых будущих версий `PyABIInfo`.210211#### `uint16_t flags`212213Это поле обычно устанавливается в следующий макрос:214215#### `PyABIInfo_DEFAULT_FLAGS`216217*Часть [Stable ABI](https://python-all.ru/3.16/c-api/stable.html#stable) начиная с версии 3.15.*218219Флаги по умолчанию, основанные на текущих значениях макросов, таких как [`Py_LIMITED_API`](https://python-all.ru/3.16/c-api/stable.html#c.Py_LIMITED_API) и [`Py_GIL_DISABLED`](https://python-all.ru/3.16/using/configure.html#c.Py_GIL_DISABLED).220221В качестве альтернативы поле может быть установлено в следующие флаги, объединённые поразрядным ИЛИ. Неиспользуемые биты должны быть установлены в ноль.222223Вариант ABI – один из:224225> #### `PyABIInfo_STABLE`226>227> *Часть [Stable ABI](https://python-all.ru/3.16/c-api/stable.html#stable) начиная с версии 3.15.*228>229> Указывает, что используется стабильный ABI.230>231> #### `PyABIInfo_INTERNAL`232>233> Указывает ABI, специфичный для конкретной сборки CPython. Только для внутреннего использования.234235Совместимость со свободной многопоточностью – один из:236237> #### `PyABIInfo_FREETHREADED`238>239> *Часть [Stable ABI](https://python-all.ru/3.16/c-api/stable.html#stable) начиная с версии 3.15.*240>241> Указывает ABI, совместимый с [сборками со свободными потоками](https://python-all.ru/3.16/glossary.html#term-free-threaded-build) CPython. (То есть сборками, скомпилированными с [`--disable-gil`](https://python-all.ru/3.16/using/configure.html#cmdoption-disable-gil); с `t` в [`sys.abiflags`](https://python-all.ru/3.16/library/sys.html#sys.abiflags))242>243> #### `PyABIInfo_GIL`244>245> *Часть [Stable ABI](https://python-all.ru/3.16/c-api/stable.html#stable) начиная с версии 3.15.*246>247> Указывает ABI, совместимый со сборками CPython без свободных потоков (то есть сборками, скомпилированными *без* [`--disable-gil`](https://python-all.ru/3.16/using/configure.html#cmdoption-disable-gil)).248>249> #### `PyABIInfo_FREETHREADING_AGNOSTIC`250>251> *Часть [Stable ABI](https://python-all.ru/3.16/c-api/stable.html#stable) начиная с версии 3.15.*252>253> Указывает ABI, совместимый как со сборками со свободными потоками, так и со сборками без свободных потоков CPython, то есть как с `abi3`, так и с `abi3t`.254255#### `uint32_t build_version`256257Версия заголовочных файлов Python, использованных для сборки кода, в формате, используемом в [`PY_VERSION_HEX`](https://python-all.ru/3.16/c-api/apiabiversion.html#c.PY_VERSION_HEX).258259Это поле можно установить в `0`, чтобы пропустить любые проверки, связанные с этим полем. Эта опция предназначена в основном для проектов, которые не используют заголовочные файлы CPython напрямую и не эмулируют какую-либо конкретную их версию.260261#### `uint32_t abi_version`262263Версия ABI.264265Для Stable ABI это поле должно быть установлено в значение [`Py_LIMITED_API`](https://python-all.ru/3.16/c-api/stable.html#c.Py_LIMITED_API) или [`Py_TARGET_ABI3T`](https://python-all.ru/3.16/c-api/stable.html#c.Py_TARGET_ABI3T). Если оба определены, используйте меньшее значение. (Если `Py_LIMITED_API` равно `3`; используйте [Py\_PACK\_VERSION](https://python-all.ru/3.16/c-api/apiabiversion.html#c.Py_PACK_VERSION)(3, 2) вместо `3`.)266267В противном случае, его следует установить в [`PY_VERSION_HEX`](https://python-all.ru/3.16/c-api/apiabiversion.html#c.PY_VERSION_HEX).268269Его также можно установить в `0`, чтобы пропустить любые проверки, связанные с этим полем.270271#### `PyABIInfo_DEFAULT_ABI_VERSION`272273*Часть [Stable ABI](https://python-all.ru/3.16/c-api/stable.html#stable) начиная с версии 3.15.*274275Значение, которое следует использовать для этого поля, на основе текущих значений макросов, таких как [`Py_LIMITED_API`](https://python-all.ru/3.16/c-api/stable.html#c.Py_LIMITED_API), [`PY_VERSION_HEX`](https://python-all.ru/3.16/c-api/apiabiversion.html#c.PY_VERSION_HEX) и [`Py_GIL_DISABLED`](https://python-all.ru/3.16/using/configure.html#c.Py_GIL_DISABLED).276277Добавлено в версии 3.15.278279## Содержание Limited API280281Это окончательный список [Limited API](https://python-all.ru/3.16/c-api/stable.html#limited-c-api) для Python 3.16:282283- [`METH_CLASS`](https://python-all.ru/3.16/c-api/structures.html#c.METH_CLASS)284- [`METH_COEXIST`](https://python-all.ru/3.16/c-api/structures.html#c.METH_COEXIST)285- [`METH_FASTCALL`](https://python-all.ru/3.16/c-api/structures.html#c.METH_FASTCALL)286- [`METH_METHOD`](https://python-all.ru/3.16/c-api/structures.html#c.METH_METHOD)287- [`METH_NOARGS`](https://python-all.ru/3.16/c-api/structures.html#c.METH_NOARGS)288- [`METH_O`](https://python-all.ru/3.16/c-api/structures.html#c.METH_O)289- [`METH_STATIC`](https://python-all.ru/3.16/c-api/structures.html#c.METH_STATIC)290- [`METH_VARARGS`](https://python-all.ru/3.16/c-api/structures.html#c.METH_VARARGS)291- [`PY_VECTORCALL_ARGUMENTS_OFFSET`](https://python-all.ru/3.16/c-api/call.html#c.PY_VECTORCALL_ARGUMENTS_OFFSET)292- [`PyABIInfo`](https://python-all.ru/3.16/c-api/stable.html#c.PyABIInfo)293- [`PyABIInfo_Check()`](https://python-all.ru/3.16/c-api/stable.html#c.PyABIInfo_Check)294- [`PyABIInfo_DEFAULT_ABI_VERSION`](https://python-all.ru/3.16/c-api/stable.html#c.PyABIInfo_DEFAULT_ABI_VERSION)295- [`PyABIInfo_DEFAULT_FLAGS`](https://python-all.ru/3.16/c-api/stable.html#c.PyABIInfo_DEFAULT_FLAGS)296- [`PyABIInfo_FREETHREADED`](https://python-all.ru/3.16/c-api/stable.html#c.PyABIInfo_FREETHREADED)297- [`PyABIInfo_FREETHREADING_AGNOSTIC`](https://python-all.ru/3.16/c-api/stable.html#c.PyABIInfo_FREETHREADING_AGNOSTIC)298- [`PyABIInfo_GIL`](https://python-all.ru/3.16/c-api/stable.html#c.PyABIInfo_GIL)299- [`PyABIInfo_STABLE`](https://python-all.ru/3.16/c-api/stable.html#c.PyABIInfo_STABLE)300- [`PyABIInfo_VAR`](https://python-all.ru/3.16/c-api/stable.html#c.PyABIInfo_VAR)301- [`PyAIter_Check()`](https://python-all.ru/3.16/c-api/iter.html#c.PyAIter_Check)302- [`PyArg_Parse()`](https://python-all.ru/3.16/c-api/arg.html#c.PyArg_Parse)303- [`PyArg_ParseTuple()`](https://python-all.ru/3.16/c-api/arg.html#c.PyArg_ParseTuple)304- [`PyArg_ParseTupleAndKeywords()`](https://python-all.ru/3.16/c-api/arg.html#c.PyArg_ParseTupleAndKeywords)305- [`PyArg_UnpackTuple()`](https://python-all.ru/3.16/c-api/arg.html#c.PyArg_UnpackTuple)306- [`PyArg_VaParse()`](https://python-all.ru/3.16/c-api/arg.html#c.PyArg_VaParse)307- [`PyArg_VaParseTupleAndKeywords()`](https://python-all.ru/3.16/c-api/arg.html#c.PyArg_VaParseTupleAndKeywords)308- [`PyArg_ValidateKeywordArguments()`](https://python-all.ru/3.16/c-api/arg.html#c.PyArg_ValidateKeywordArguments)309- [`PyBUF_ANY_CONTIGUOUS`](https://python-all.ru/3.16/c-api/buffer.html#c.PyBUF_ANY_CONTIGUOUS)310- [`PyBUF_CONTIG`](https://python-all.ru/3.16/c-api/buffer.html#c.PyBUF_CONTIG)311- [`PyBUF_CONTIG_RO`](https://python-all.ru/3.16/c-api/buffer.html#c.PyBUF_CONTIG_RO)312- [`PyBUF_C_CONTIGUOUS`](https://python-all.ru/3.16/c-api/buffer.html#c.PyBUF_C_CONTIGUOUS)313- [`PyBUF_FORMAT`](https://python-all.ru/3.16/c-api/buffer.html#c.PyBUF_FORMAT)314- [`PyBUF_FULL`](https://python-all.ru/3.16/c-api/buffer.html#c.PyBUF_FULL)315- [`PyBUF_FULL_RO`](https://python-all.ru/3.16/c-api/buffer.html#c.PyBUF_FULL_RO)316- [`PyBUF_F_CONTIGUOUS`](https://python-all.ru/3.16/c-api/buffer.html#c.PyBUF_F_CONTIGUOUS)317- [`PyBUF_INDIRECT`](https://python-all.ru/3.16/c-api/buffer.html#c.PyBUF_INDIRECT)318- [`PyBUF_MAX_NDIM`](https://python-all.ru/3.16/c-api/buffer.html#c.PyBUF_MAX_NDIM)319- [`PyBUF_ND`](https://python-all.ru/3.16/c-api/buffer.html#c.PyBUF_ND)320- [`PyBUF_READ`](https://python-all.ru/3.16/c-api/memoryview.html#c.PyBUF_READ)321- [`PyBUF_RECORDS`](https://python-all.ru/3.16/c-api/buffer.html#c.PyBUF_RECORDS)322- [`PyBUF_RECORDS_RO`](https://python-all.ru/3.16/c-api/buffer.html#c.PyBUF_RECORDS_RO)323- [`PyBUF_SIMPLE`](https://python-all.ru/3.16/c-api/buffer.html#c.PyBUF_SIMPLE)324- [`PyBUF_STRIDED`](https://python-all.ru/3.16/c-api/buffer.html#c.PyBUF_STRIDED)325- [`PyBUF_STRIDED_RO`](https://python-all.ru/3.16/c-api/buffer.html#c.PyBUF_STRIDED_RO)326- [`PyBUF_STRIDES`](https://python-all.ru/3.16/c-api/buffer.html#c.PyBUF_STRIDES)327- [`PyBUF_WRITABLE`](https://python-all.ru/3.16/c-api/buffer.html#c.PyBUF_WRITABLE)328- [`PyBUF_WRITE`](https://python-all.ru/3.16/c-api/memoryview.html#c.PyBUF_WRITE)329- [`PyBaseObject_Type`](https://python-all.ru/3.16/c-api/structures.html#c.PyBaseObject_Type)330- [`PyBool_FromLong()`](https://python-all.ru/3.16/c-api/bool.html#c.PyBool_FromLong)331- [`PyBool_Type`](https://python-all.ru/3.16/c-api/bool.html#c.PyBool_Type)332- [`PyBuffer_FillContiguousStrides()`](https://python-all.ru/3.16/c-api/buffer.html#c.PyBuffer_FillContiguousStrides)333- [`PyBuffer_FillInfo()`](https://python-all.ru/3.16/c-api/buffer.html#c.PyBuffer_FillInfo)334- [`PyBuffer_FromContiguous()`](https://python-all.ru/3.16/c-api/buffer.html#c.PyBuffer_FromContiguous)335- [`PyBuffer_GetPointer()`](https://python-all.ru/3.16/c-api/buffer.html#c.PyBuffer_GetPointer)336- [`PyBuffer_IsContiguous()`](https://python-all.ru/3.16/c-api/buffer.html#c.PyBuffer_IsContiguous)337- [`PyBuffer_Release()`](https://python-all.ru/3.16/c-api/buffer.html#c.PyBuffer_Release)338- [`PyBuffer_SizeFromFormat()`](https://python-all.ru/3.16/c-api/buffer.html#c.PyBuffer_SizeFromFormat)339- [`PyBuffer_ToContiguous()`](https://python-all.ru/3.16/c-api/buffer.html#c.PyBuffer_ToContiguous)340- [`PyByteArrayIter_Type`](https://python-all.ru/3.16/c-api/iterator.html#c.PyByteArrayIter_Type)341- [`PyByteArray_AsString()`](https://python-all.ru/3.16/c-api/bytearray.html#c.PyByteArray_AsString)342- [`PyByteArray_Concat()`](https://python-all.ru/3.16/c-api/bytearray.html#c.PyByteArray_Concat)343- [`PyByteArray_FromObject()`](https://python-all.ru/3.16/c-api/bytearray.html#c.PyByteArray_FromObject)344- [`PyByteArray_FromStringAndSize()`](https://python-all.ru/3.16/c-api/bytearray.html#c.PyByteArray_FromStringAndSize)345- [`PyByteArray_Resize()`](https://python-all.ru/3.16/c-api/bytearray.html#c.PyByteArray_Resize)346- [`PyByteArray_Size()`](https://python-all.ru/3.16/c-api/bytearray.html#c.PyByteArray_Size)347- [`PyByteArray_Type`](https://python-all.ru/3.16/c-api/bytearray.html#c.PyByteArray_Type)348- [`PyBytesIter_Type`](https://python-all.ru/3.16/c-api/iterator.html#c.PyBytesIter_Type)349- [`PyBytes_AsString()`](https://python-all.ru/3.16/c-api/bytes.html#c.PyBytes_AsString)350- [`PyBytes_AsStringAndSize()`](https://python-all.ru/3.16/c-api/bytes.html#c.PyBytes_AsStringAndSize)351- [`PyBytes_Concat()`](https://python-all.ru/3.16/c-api/bytes.html#c.PyBytes_Concat)352- [`PyBytes_ConcatAndDel()`](https://python-all.ru/3.16/c-api/bytes.html#c.PyBytes_ConcatAndDel)353- [`PyBytes_DecodeEscape()`](https://python-all.ru/3.16/c-api/bytes.html#c.PyBytes_DecodeEscape)354- [`PyBytes_FromFormat()`](https://python-all.ru/3.16/c-api/bytes.html#c.PyBytes_FromFormat)355- [`PyBytes_FromFormatV()`](https://python-all.ru/3.16/c-api/bytes.html#c.PyBytes_FromFormatV)356- [`PyBytes_FromObject()`](https://python-all.ru/3.16/c-api/bytes.html#c.PyBytes_FromObject)357- [`PyBytes_FromString()`](https://python-all.ru/3.16/c-api/bytes.html#c.PyBytes_FromString)358- [`PyBytes_FromStringAndSize()`](https://python-all.ru/3.16/c-api/bytes.html#c.PyBytes_FromStringAndSize)359- [`PyBytes_Repr()`](https://python-all.ru/3.16/c-api/bytes.html#c.PyBytes_Repr)360- [`PyBytes_Size()`](https://python-all.ru/3.16/c-api/bytes.html#c.PyBytes_Size)361- [`PyBytes_Type`](https://python-all.ru/3.16/c-api/bytes.html#c.PyBytes_Type)362- [`PyCFunction`](https://python-all.ru/3.16/c-api/structures.html#c.PyCFunction)363- [`PyCFunctionFast`](https://python-all.ru/3.16/c-api/structures.html#c.PyCFunctionFast)364- [`PyCFunctionFastWithKeywords`](https://python-all.ru/3.16/c-api/structures.html#c.PyCFunctionFastWithKeywords)365- [`PyCFunctionWithKeywords`](https://python-all.ru/3.16/c-api/structures.html#c.PyCFunctionWithKeywords)366- [`PyCFunction_GetFlags()`](https://python-all.ru/3.16/c-api/structures.html#c.PyCFunction_GetFlags)367- [`PyCFunction_GetFunction()`](https://python-all.ru/3.16/c-api/structures.html#c.PyCFunction_GetFunction)368- [`PyCFunction_GetSelf()`](https://python-all.ru/3.16/c-api/structures.html#c.PyCFunction_GetSelf)369- [`PyCFunction_New()`](https://python-all.ru/3.16/c-api/structures.html#c.PyCFunction_New)370- [`PyCFunction_NewEx()`](https://python-all.ru/3.16/c-api/structures.html#c.PyCFunction_NewEx)371- [`PyCFunction_Type`](https://python-all.ru/3.16/c-api/structures.html#c.PyCFunction_Type)372- [`PyCMethod_New()`](https://python-all.ru/3.16/c-api/structures.html#c.PyCMethod_New)373- [`PyCallIter_New()`](https://python-all.ru/3.16/c-api/iterator.html#c.PyCallIter_New)374- [`PyCallIter_Type`](https://python-all.ru/3.16/c-api/iterator.html#c.PyCallIter_Type)375- [`PyCallable_Check()`](https://python-all.ru/3.16/c-api/call.html#c.PyCallable_Check)376- [`PyCapsule_Destructor`](https://python-all.ru/3.16/c-api/capsule.html#c.PyCapsule_Destructor)377- [`PyCapsule_GetContext()`](https://python-all.ru/3.16/c-api/capsule.html#c.PyCapsule_GetContext)378- [`PyCapsule_GetDestructor()`](https://python-all.ru/3.16/c-api/capsule.html#c.PyCapsule_GetDestructor)379- [`PyCapsule_GetName()`](https://python-all.ru/3.16/c-api/capsule.html#c.PyCapsule_GetName)380- [`PyCapsule_GetPointer()`](https://python-all.ru/3.16/c-api/capsule.html#c.PyCapsule_GetPointer)381- [`PyCapsule_Import()`](https://python-all.ru/3.16/c-api/capsule.html#c.PyCapsule_Import)382- [`PyCapsule_IsValid()`](https://python-all.ru/3.16/c-api/capsule.html#c.PyCapsule_IsValid)383- [`PyCapsule_New()`](https://python-all.ru/3.16/c-api/capsule.html#c.PyCapsule_New)384- [`PyCapsule_SetContext()`](https://python-all.ru/3.16/c-api/capsule.html#c.PyCapsule_SetContext)385- [`PyCapsule_SetDestructor()`](https://python-all.ru/3.16/c-api/capsule.html#c.PyCapsule_SetDestructor)386- [`PyCapsule_SetName()`](https://python-all.ru/3.16/c-api/capsule.html#c.PyCapsule_SetName)387- [`PyCapsule_SetPointer()`](https://python-all.ru/3.16/c-api/capsule.html#c.PyCapsule_SetPointer)388- [`PyCapsule_Type`](https://python-all.ru/3.16/c-api/capsule.html#c.PyCapsule_Type)389- [`PyClassMethodDescr_Type`](https://python-all.ru/3.16/c-api/descriptor.html#c.PyClassMethodDescr_Type)390- [`PyCodec_BackslashReplaceErrors()`](https://python-all.ru/3.16/c-api/codec.html#c.PyCodec_BackslashReplaceErrors)391- [`PyCodec_Decode()`](https://python-all.ru/3.16/c-api/codec.html#c.PyCodec_Decode)392- [`PyCodec_Decoder()`](https://python-all.ru/3.16/c-api/codec.html#c.PyCodec_Decoder)393- [`PyCodec_Encode()`](https://python-all.ru/3.16/c-api/codec.html#c.PyCodec_Encode)394- [`PyCodec_Encoder()`](https://python-all.ru/3.16/c-api/codec.html#c.PyCodec_Encoder)395- [`PyCodec_IgnoreErrors()`](https://python-all.ru/3.16/c-api/codec.html#c.PyCodec_IgnoreErrors)396- [`PyCodec_IncrementalDecoder()`](https://python-all.ru/3.16/c-api/codec.html#c.PyCodec_IncrementalDecoder)397- [`PyCodec_IncrementalEncoder()`](https://python-all.ru/3.16/c-api/codec.html#c.PyCodec_IncrementalEncoder)398- [`PyCodec_KnownEncoding()`](https://python-all.ru/3.16/c-api/codec.html#c.PyCodec_KnownEncoding)399- [`PyCodec_LookupError()`](https://python-all.ru/3.16/c-api/codec.html#c.PyCodec_LookupError)400- [`PyCodec_NameReplaceErrors()`](https://python-all.ru/3.16/c-api/codec.html#c.PyCodec_NameReplaceErrors)401- [`PyCodec_Register()`](https://python-all.ru/3.16/c-api/codec.html#c.PyCodec_Register)402- [`PyCodec_RegisterError()`](https://python-all.ru/3.16/c-api/codec.html#c.PyCodec_RegisterError)403- [`PyCodec_ReplaceErrors()`](https://python-all.ru/3.16/c-api/codec.html#c.PyCodec_ReplaceErrors)404- [`PyCodec_StreamReader()`](https://python-all.ru/3.16/c-api/codec.html#c.PyCodec_StreamReader)405- [`PyCodec_StreamWriter()`](https://python-all.ru/3.16/c-api/codec.html#c.PyCodec_StreamWriter)406- [`PyCodec_StrictErrors()`](https://python-all.ru/3.16/c-api/codec.html#c.PyCodec_StrictErrors)407- [`PyCodec_Unregister()`](https://python-all.ru/3.16/c-api/codec.html#c.PyCodec_Unregister)408- [`PyCodec_XMLCharRefReplaceErrors()`](https://python-all.ru/3.16/c-api/codec.html#c.PyCodec_XMLCharRefReplaceErrors)409- [`PyComplex_FromDoubles()`](https://python-all.ru/3.16/c-api/complex.html#c.PyComplex_FromDoubles)410- [`PyComplex_ImagAsDouble()`](https://python-all.ru/3.16/c-api/complex.html#c.PyComplex_ImagAsDouble)411- [`PyComplex_RealAsDouble()`](https://python-all.ru/3.16/c-api/complex.html#c.PyComplex_RealAsDouble)412- [`PyComplex_Type`](https://python-all.ru/3.16/c-api/complex.html#c.PyComplex_Type)413- [`PyCriticalSection`](https://python-all.ru/3.16/c-api/synchronization.html#c.PyCriticalSection)414- [`PyCriticalSection2`](https://python-all.ru/3.16/c-api/synchronization.html#c.PyCriticalSection2)415- [`PyCriticalSection2_Begin()`](https://python-all.ru/3.16/c-api/synchronization.html#c.PyCriticalSection2_Begin)416- [`PyCriticalSection2_End()`](https://python-all.ru/3.16/c-api/synchronization.html#c.PyCriticalSection2_End)417- [`PyCriticalSection_Begin()`](https://python-all.ru/3.16/c-api/synchronization.html#c.PyCriticalSection_Begin)418- [`PyCriticalSection_End()`](https://python-all.ru/3.16/c-api/synchronization.html#c.PyCriticalSection_End)419- [`PyDescr_NewClassMethod()`](https://python-all.ru/3.16/c-api/descriptor.html#c.PyDescr_NewClassMethod)420- [`PyDescr_NewGetSet()`](https://python-all.ru/3.16/c-api/descriptor.html#c.PyDescr_NewGetSet)421- [`PyDescr_NewMember()`](https://python-all.ru/3.16/c-api/descriptor.html#c.PyDescr_NewMember)422- [`PyDescr_NewMethod()`](https://python-all.ru/3.16/c-api/descriptor.html#c.PyDescr_NewMethod)423- [`PyDictItems_Type`](https://python-all.ru/3.16/c-api/dict.html#c.PyDictItems_Type)424- [`PyDictIterItem_Type`](https://python-all.ru/3.16/c-api/iterator.html#c.PyDictIterItem_Type)425- [`PyDictIterKey_Type`](https://python-all.ru/3.16/c-api/iterator.html#c.PyDictIterKey_Type)426- [`PyDictIterValue_Type`](https://python-all.ru/3.16/c-api/iterator.html#c.PyDictIterValue_Type)427- [`PyDictKeys_Type`](https://python-all.ru/3.16/c-api/dict.html#c.PyDictKeys_Type)428- [`PyDictProxy_New()`](https://python-all.ru/3.16/c-api/dict.html#c.PyDictProxy_New)429- [`PyDictProxy_Type`](https://python-all.ru/3.16/c-api/dict.html#c.PyDictProxy_Type)430- [`PyDictRevIterItem_Type`](https://python-all.ru/3.16/c-api/iterator.html#c.PyDictRevIterItem_Type)431- [`PyDictRevIterKey_Type`](https://python-all.ru/3.16/c-api/iterator.html#c.PyDictRevIterKey_Type)432- [`PyDictRevIterValue_Type`](https://python-all.ru/3.16/c-api/iterator.html#c.PyDictRevIterValue_Type)433- [`PyDictValues_Type`](https://python-all.ru/3.16/c-api/dict.html#c.PyDictValues_Type)434- [`PyDict_Clear()`](https://python-all.ru/3.16/c-api/dict.html#c.PyDict_Clear)435- [`PyDict_Contains()`](https://python-all.ru/3.16/c-api/dict.html#c.PyDict_Contains)436- [`PyDict_Copy()`](https://python-all.ru/3.16/c-api/dict.html#c.PyDict_Copy)437- [`PyDict_DelItem()`](https://python-all.ru/3.16/c-api/dict.html#c.PyDict_DelItem)438- [`PyDict_DelItemString()`](https://python-all.ru/3.16/c-api/dict.html#c.PyDict_DelItemString)439- [`PyDict_GetItem()`](https://python-all.ru/3.16/c-api/dict.html#c.PyDict_GetItem)440- [`PyDict_GetItemRef()`](https://python-all.ru/3.16/c-api/dict.html#c.PyDict_GetItemRef)441- [`PyDict_GetItemString()`](https://python-all.ru/3.16/c-api/dict.html#c.PyDict_GetItemString)442- [`PyDict_GetItemStringRef()`](https://python-all.ru/3.16/c-api/dict.html#c.PyDict_GetItemStringRef)443- [`PyDict_GetItemWithError()`](https://python-all.ru/3.16/c-api/dict.html#c.PyDict_GetItemWithError)444- [`PyDict_Items()`](https://python-all.ru/3.16/c-api/dict.html#c.PyDict_Items)445- [`PyDict_Keys()`](https://python-all.ru/3.16/c-api/dict.html#c.PyDict_Keys)446- [`PyDict_Merge()`](https://python-all.ru/3.16/c-api/dict.html#c.PyDict_Merge)447- [`PyDict_MergeFromSeq2()`](https://python-all.ru/3.16/c-api/dict.html#c.PyDict_MergeFromSeq2)448- [`PyDict_New()`](https://python-all.ru/3.16/c-api/dict.html#c.PyDict_New)449- [`PyDict_Next()`](https://python-all.ru/3.16/c-api/dict.html#c.PyDict_Next)450- [`PyDict_SetDefaultRef()`](https://python-all.ru/3.16/c-api/dict.html#c.PyDict_SetDefaultRef)451- [`PyDict_SetItem()`](https://python-all.ru/3.16/c-api/dict.html#c.PyDict_SetItem)452- [`PyDict_SetItemString()`](https://python-all.ru/3.16/c-api/dict.html#c.PyDict_SetItemString)453- [`PyDict_Size()`](https://python-all.ru/3.16/c-api/dict.html#c.PyDict_Size)454- [`PyDict_Type`](https://python-all.ru/3.16/c-api/dict.html#c.PyDict_Type)455- [`PyDict_Update()`](https://python-all.ru/3.16/c-api/dict.html#c.PyDict_Update)456- [`PyDict_Values()`](https://python-all.ru/3.16/c-api/dict.html#c.PyDict_Values)457- [`PyEllipsis_Type`](https://python-all.ru/3.16/c-api/slice.html#c.PyEllipsis_Type)458- [`PyEnum_Type`](https://python-all.ru/3.16/c-api/iterator.html#c.PyEnum_Type)459- [`PyErr_BadArgument()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_BadArgument)460- [`PyErr_BadInternalCall()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_BadInternalCall)461- [`PyErr_CheckSignals()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_CheckSignals)462- [`PyErr_Clear()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_Clear)463- `PyErr_Display()`464- [`PyErr_DisplayException()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_DisplayException)465- [`PyErr_ExceptionMatches()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_ExceptionMatches)466- [`PyErr_Fetch()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_Fetch)467- [`PyErr_Format()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_Format)468- [`PyErr_FormatV()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_FormatV)469- [`PyErr_GetExcInfo()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_GetExcInfo)470- [`PyErr_GetHandledException()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_GetHandledException)471- [`PyErr_GetRaisedException()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_GetRaisedException)472- [`PyErr_GivenExceptionMatches()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_GivenExceptionMatches)473- [`PyErr_NewException()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_NewException)474- [`PyErr_NewExceptionWithDoc()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_NewExceptionWithDoc)475- [`PyErr_NoMemory()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_NoMemory)476- [`PyErr_NormalizeException()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_NormalizeException)477- [`PyErr_Occurred()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_Occurred)478- [`PyErr_Print()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_Print)479- [`PyErr_PrintEx()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_PrintEx)480- [`PyErr_ProgramText()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_ProgramText)481- [`PyErr_ResourceWarning()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_ResourceWarning)482- [`PyErr_Restore()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_Restore)483- [`PyErr_SetExcFromWindowsErr()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_SetExcFromWindowsErr)484- [`PyErr_SetExcFromWindowsErrWithFilename()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_SetExcFromWindowsErrWithFilename)485- [`PyErr_SetExcFromWindowsErrWithFilenameObject()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_SetExcFromWindowsErrWithFilenameObject)486- [`PyErr_SetExcFromWindowsErrWithFilenameObjects()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_SetExcFromWindowsErrWithFilenameObjects)487- [`PyErr_SetExcInfo()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_SetExcInfo)488- [`PyErr_SetFromErrno()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_SetFromErrno)489- [`PyErr_SetFromErrnoWithFilename()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_SetFromErrnoWithFilename)490- [`PyErr_SetFromErrnoWithFilenameObject()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_SetFromErrnoWithFilenameObject)491- [`PyErr_SetFromErrnoWithFilenameObjects()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_SetFromErrnoWithFilenameObjects)492- [`PyErr_SetFromWindowsErr()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_SetFromWindowsErr)493- [`PyErr_SetFromWindowsErrWithFilename()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_SetFromWindowsErrWithFilename)494- [`PyErr_SetHandledException()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_SetHandledException)495- [`PyErr_SetImportError()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_SetImportError)496- [`PyErr_SetImportErrorSubclass()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_SetImportErrorSubclass)497- [`PyErr_SetInterrupt()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_SetInterrupt)498- [`PyErr_SetInterruptEx()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_SetInterruptEx)499- [`PyErr_SetNone()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_SetNone)500- [`PyErr_SetObject()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_SetObject)501- [`PyErr_SetRaisedException()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_SetRaisedException)502- [`PyErr_SetString()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_SetString)503- [`PyErr_SyntaxLocation()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_SyntaxLocation)504- [`PyErr_SyntaxLocationEx()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_SyntaxLocationEx)505- [`PyErr_WarnEx()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_WarnEx)506- [`PyErr_WarnExplicit()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_WarnExplicit)507- [`PyErr_WarnFormat()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_WarnFormat)508- [`PyErr_WriteUnraisable()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyErr_WriteUnraisable)509- [`PyEval_AcquireThread()`](https://python-all.ru/3.16/c-api/threads.html#c.PyEval_AcquireThread)510- [`PyEval_EvalCode()`](https://python-all.ru/3.16/c-api/veryhigh.html#c.PyEval_EvalCode)511- [`PyEval_EvalCodeEx()`](https://python-all.ru/3.16/c-api/veryhigh.html#c.PyEval_EvalCodeEx)512- [`PyEval_EvalFrame()`](https://python-all.ru/3.16/c-api/veryhigh.html#c.PyEval_EvalFrame)513- [`PyEval_EvalFrameEx()`](https://python-all.ru/3.16/c-api/veryhigh.html#c.PyEval_EvalFrameEx)514- [`PyEval_GetBuiltins()`](https://python-all.ru/3.16/c-api/reflection.html#c.PyEval_GetBuiltins)515- [`PyEval_GetFrame()`](https://python-all.ru/3.16/c-api/reflection.html#c.PyEval_GetFrame)516- [`PyEval_GetFrameBuiltins()`](https://python-all.ru/3.16/c-api/reflection.html#c.PyEval_GetFrameBuiltins)517- [`PyEval_GetFrameGlobals()`](https://python-all.ru/3.16/c-api/reflection.html#c.PyEval_GetFrameGlobals)518- [`PyEval_GetFrameLocals()`](https://python-all.ru/3.16/c-api/reflection.html#c.PyEval_GetFrameLocals)519- [`PyEval_GetFuncDesc()`](https://python-all.ru/3.16/c-api/reflection.html#c.PyEval_GetFuncDesc)520- [`PyEval_GetFuncName()`](https://python-all.ru/3.16/c-api/reflection.html#c.PyEval_GetFuncName)521- [`PyEval_GetGlobals()`](https://python-all.ru/3.16/c-api/reflection.html#c.PyEval_GetGlobals)522- [`PyEval_GetLocals()`](https://python-all.ru/3.16/c-api/reflection.html#c.PyEval_GetLocals)523- [`PyEval_InitThreads()`](https://python-all.ru/3.16/c-api/threads.html#c.PyEval_InitThreads)524- [`PyEval_ReleaseThread()`](https://python-all.ru/3.16/c-api/threads.html#c.PyEval_ReleaseThread)525- [`PyEval_RestoreThread()`](https://python-all.ru/3.16/c-api/threads.html#c.PyEval_RestoreThread)526- [`PyEval_SaveThread()`](https://python-all.ru/3.16/c-api/threads.html#c.PyEval_SaveThread)527- [`PyExc_ArithmeticError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_ArithmeticError)528- [`PyExc_AssertionError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_AssertionError)529- [`PyExc_AttributeError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_AttributeError)530- [`PyExc_BaseException`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_BaseException)531- [`PyExc_BaseExceptionGroup`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_BaseExceptionGroup)532- [`PyExc_BlockingIOError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_BlockingIOError)533- [`PyExc_BrokenPipeError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_BrokenPipeError)534- [`PyExc_BufferError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_BufferError)535- [`PyExc_BytesWarning`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_BytesWarning)536- [`PyExc_ChildProcessError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_ChildProcessError)537- [`PyExc_ConnectionAbortedError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_ConnectionAbortedError)538- [`PyExc_ConnectionError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_ConnectionError)539- [`PyExc_ConnectionRefusedError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_ConnectionRefusedError)540- [`PyExc_ConnectionResetError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_ConnectionResetError)541- [`PyExc_DeprecationWarning`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_DeprecationWarning)542- [`PyExc_EOFError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_EOFError)543- [`PyExc_EncodingWarning`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_EncodingWarning)544- [`PyExc_EnvironmentError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_EnvironmentError)545- [`PyExc_Exception`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_Exception)546- [`PyExc_FileExistsError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_FileExistsError)547- [`PyExc_FileNotFoundError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_FileNotFoundError)548- [`PyExc_FloatingPointError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_FloatingPointError)549- [`PyExc_FutureWarning`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_FutureWarning)550- [`PyExc_GeneratorExit`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_GeneratorExit)551- [`PyExc_IOError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_IOError)552- [`PyExc_ImportError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_ImportError)553- [`PyExc_ImportWarning`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_ImportWarning)554- [`PyExc_IndentationError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_IndentationError)555- [`PyExc_IndexError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_IndexError)556- [`PyExc_InterruptedError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_InterruptedError)557- [`PyExc_IsADirectoryError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_IsADirectoryError)558- [`PyExc_KeyError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_KeyError)559- [`PyExc_KeyboardInterrupt`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_KeyboardInterrupt)560- [`PyExc_LookupError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_LookupError)561- [`PyExc_MemoryError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_MemoryError)562- [`PyExc_ModuleNotFoundError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_ModuleNotFoundError)563- [`PyExc_NameError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_NameError)564- [`PyExc_NotADirectoryError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_NotADirectoryError)565- [`PyExc_NotImplementedError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_NotImplementedError)566- [`PyExc_OSError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_OSError)567- [`PyExc_OverflowError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_OverflowError)568- [`PyExc_PendingDeprecationWarning`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_PendingDeprecationWarning)569- [`PyExc_PermissionError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_PermissionError)570- [`PyExc_ProcessLookupError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_ProcessLookupError)571- [`PyExc_RecursionError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_RecursionError)572- [`PyExc_ReferenceError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_ReferenceError)573- [`PyExc_ResourceWarning`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_ResourceWarning)574- [`PyExc_RuntimeError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_RuntimeError)575- [`PyExc_RuntimeWarning`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_RuntimeWarning)576- [`PyExc_StopAsyncIteration`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_StopAsyncIteration)577- [`PyExc_StopIteration`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_StopIteration)578- [`PyExc_SyntaxError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_SyntaxError)579- [`PyExc_SyntaxWarning`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_SyntaxWarning)580- [`PyExc_SystemError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_SystemError)581- [`PyExc_SystemExit`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_SystemExit)582- [`PyExc_TabError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_TabError)583- [`PyExc_TimeoutError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_TimeoutError)584- [`PyExc_TypeError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_TypeError)585- [`PyExc_UnboundLocalError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_UnboundLocalError)586- [`PyExc_UnicodeDecodeError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_UnicodeDecodeError)587- [`PyExc_UnicodeEncodeError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_UnicodeEncodeError)588- [`PyExc_UnicodeError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_UnicodeError)589- [`PyExc_UnicodeTranslateError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_UnicodeTranslateError)590- [`PyExc_UnicodeWarning`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_UnicodeWarning)591- [`PyExc_UserWarning`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_UserWarning)592- [`PyExc_ValueError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_ValueError)593- [`PyExc_Warning`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_Warning)594- [`PyExc_WindowsError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_WindowsError)595- [`PyExc_ZeroDivisionError`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExc_ZeroDivisionError)596- [`PyExceptionClass_Name()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyExceptionClass_Name)597- [`PyException_GetArgs()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyException_GetArgs)598- [`PyException_GetCause()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyException_GetCause)599- [`PyException_GetContext()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyException_GetContext)600- [`PyException_GetTraceback()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyException_GetTraceback)601- [`PyException_SetArgs()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyException_SetArgs)602- [`PyException_SetCause()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyException_SetCause)603- [`PyException_SetContext()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyException_SetContext)604- [`PyException_SetTraceback()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyException_SetTraceback)605- [`PyFile_FromFd()`](https://python-all.ru/3.16/c-api/file.html#c.PyFile_FromFd)606- [`PyFile_GetLine()`](https://python-all.ru/3.16/c-api/file.html#c.PyFile_GetLine)607- [`PyFile_WriteObject()`](https://python-all.ru/3.16/c-api/file.html#c.PyFile_WriteObject)608- [`PyFile_WriteString()`](https://python-all.ru/3.16/c-api/file.html#c.PyFile_WriteString)609- [`PyFilter_Type`](https://python-all.ru/3.16/c-api/iterator.html#c.PyFilter_Type)610- [`PyFloat_AsDouble()`](https://python-all.ru/3.16/c-api/float.html#c.PyFloat_AsDouble)611- [`PyFloat_FromDouble()`](https://python-all.ru/3.16/c-api/float.html#c.PyFloat_FromDouble)612- [`PyFloat_FromString()`](https://python-all.ru/3.16/c-api/float.html#c.PyFloat_FromString)613- [`PyFloat_GetInfo()`](https://python-all.ru/3.16/c-api/float.html#c.PyFloat_GetInfo)614- [`PyFloat_GetMax()`](https://python-all.ru/3.16/c-api/float.html#c.PyFloat_GetMax)615- [`PyFloat_GetMin()`](https://python-all.ru/3.16/c-api/float.html#c.PyFloat_GetMin)616- [`PyFloat_Type`](https://python-all.ru/3.16/c-api/float.html#c.PyFloat_Type)617- [`PyFrameObject`](https://python-all.ru/3.16/c-api/frame.html#c.PyFrameObject)618- [`PyFrame_GetCode()`](https://python-all.ru/3.16/c-api/frame.html#c.PyFrame_GetCode)619- [`PyFrame_GetLineNumber()`](https://python-all.ru/3.16/c-api/frame.html#c.PyFrame_GetLineNumber)620- [`PyFrozenSet_New()`](https://python-all.ru/3.16/c-api/set.html#c.PyFrozenSet_New)621- [`PyFrozenSet_Type`](https://python-all.ru/3.16/c-api/set.html#c.PyFrozenSet_Type)622- [`PyGC_Collect()`](https://python-all.ru/3.16/c-api/gcsupport.html#c.PyGC_Collect)623- [`PyGC_Disable()`](https://python-all.ru/3.16/c-api/gcsupport.html#c.PyGC_Disable)624- [`PyGC_Enable()`](https://python-all.ru/3.16/c-api/gcsupport.html#c.PyGC_Enable)625- [`PyGC_IsEnabled()`](https://python-all.ru/3.16/c-api/gcsupport.html#c.PyGC_IsEnabled)626- [`PyGILState_Ensure()`](https://python-all.ru/3.16/c-api/threads.html#c.PyGILState_Ensure)627- [`PyGILState_GetThisThreadState()`](https://python-all.ru/3.16/c-api/threads.html#c.PyGILState_GetThisThreadState)628- [`PyGILState_Release()`](https://python-all.ru/3.16/c-api/threads.html#c.PyGILState_Release)629- [`PyGILState_STATE`](https://python-all.ru/3.16/c-api/threads.html#c.PyGILState_STATE)630- [`PyGetSetDef`](https://python-all.ru/3.16/c-api/structures.html#c.PyGetSetDef)631- [`PyGetSetDescr_Type`](https://python-all.ru/3.16/c-api/descriptor.html#c.PyGetSetDescr_Type)632- [`PyImport_AddModule()`](https://python-all.ru/3.16/c-api/import.html#c.PyImport_AddModule)633- [`PyImport_AddModuleObject()`](https://python-all.ru/3.16/c-api/import.html#c.PyImport_AddModuleObject)634- [`PyImport_AddModuleRef()`](https://python-all.ru/3.16/c-api/import.html#c.PyImport_AddModuleRef)635- [`PyImport_AppendInittab()`](https://python-all.ru/3.16/c-api/import.html#c.PyImport_AppendInittab)636- [`PyImport_ExecCodeModule()`](https://python-all.ru/3.16/c-api/import.html#c.PyImport_ExecCodeModule)637- [`PyImport_ExecCodeModuleEx()`](https://python-all.ru/3.16/c-api/import.html#c.PyImport_ExecCodeModuleEx)638- [`PyImport_ExecCodeModuleObject()`](https://python-all.ru/3.16/c-api/import.html#c.PyImport_ExecCodeModuleObject)639- [`PyImport_ExecCodeModuleWithPathnames()`](https://python-all.ru/3.16/c-api/import.html#c.PyImport_ExecCodeModuleWithPathnames)640- [`PyImport_GetImporter()`](https://python-all.ru/3.16/c-api/import.html#c.PyImport_GetImporter)641- [`PyImport_GetMagicNumber()`](https://python-all.ru/3.16/c-api/import.html#c.PyImport_GetMagicNumber)642- [`PyImport_GetMagicTag()`](https://python-all.ru/3.16/c-api/import.html#c.PyImport_GetMagicTag)643- [`PyImport_GetModule()`](https://python-all.ru/3.16/c-api/import.html#c.PyImport_GetModule)644- [`PyImport_GetModuleDict()`](https://python-all.ru/3.16/c-api/import.html#c.PyImport_GetModuleDict)645- [`PyImport_Import()`](https://python-all.ru/3.16/c-api/import.html#c.PyImport_Import)646- [`PyImport_ImportFrozenModule()`](https://python-all.ru/3.16/c-api/import.html#c.PyImport_ImportFrozenModule)647- [`PyImport_ImportFrozenModuleObject()`](https://python-all.ru/3.16/c-api/import.html#c.PyImport_ImportFrozenModuleObject)648- [`PyImport_ImportModule()`](https://python-all.ru/3.16/c-api/import.html#c.PyImport_ImportModule)649- [`PyImport_ImportModuleLevel()`](https://python-all.ru/3.16/c-api/import.html#c.PyImport_ImportModuleLevel)650- [`PyImport_ImportModuleLevelObject()`](https://python-all.ru/3.16/c-api/import.html#c.PyImport_ImportModuleLevelObject)651- [`PyImport_ReloadModule()`](https://python-all.ru/3.16/c-api/import.html#c.PyImport_ReloadModule)652- [`PyIndex_Check()`](https://python-all.ru/3.16/c-api/number.html#c.PyIndex_Check)653- [`PyInterpreterGuard`](https://python-all.ru/3.16/c-api/interp-lifecycle.html#c.PyInterpreterGuard)654- [`PyInterpreterGuard_Close()`](https://python-all.ru/3.16/c-api/interp-lifecycle.html#c.PyInterpreterGuard_Close)655- [`PyInterpreterGuard_FromCurrent()`](https://python-all.ru/3.16/c-api/interp-lifecycle.html#c.PyInterpreterGuard_FromCurrent)656- [`PyInterpreterGuard_FromView()`](https://python-all.ru/3.16/c-api/interp-lifecycle.html#c.PyInterpreterGuard_FromView)657- [`PyInterpreterState`](https://python-all.ru/3.16/c-api/subinterpreters.html#c.PyInterpreterState)658- [`PyInterpreterState_Clear()`](https://python-all.ru/3.16/c-api/subinterpreters.html#c.PyInterpreterState_Clear)659- [`PyInterpreterState_Delete()`](https://python-all.ru/3.16/c-api/subinterpreters.html#c.PyInterpreterState_Delete)660- [`PyInterpreterState_Get()`](https://python-all.ru/3.16/c-api/subinterpreters.html#c.PyInterpreterState_Get)661- [`PyInterpreterState_GetDict()`](https://python-all.ru/3.16/c-api/subinterpreters.html#c.PyInterpreterState_GetDict)662- [`PyInterpreterState_GetID()`](https://python-all.ru/3.16/c-api/subinterpreters.html#c.PyInterpreterState_GetID)663- [`PyInterpreterState_New()`](https://python-all.ru/3.16/c-api/subinterpreters.html#c.PyInterpreterState_New)664- [`PyInterpreterView`](https://python-all.ru/3.16/c-api/interp-lifecycle.html#c.PyInterpreterView)665- [`PyInterpreterView_Close()`](https://python-all.ru/3.16/c-api/interp-lifecycle.html#c.PyInterpreterView_Close)666- [`PyInterpreterView_FromCurrent()`](https://python-all.ru/3.16/c-api/interp-lifecycle.html#c.PyInterpreterView_FromCurrent)667- [`PyInterpreterView_FromMain()`](https://python-all.ru/3.16/c-api/interp-lifecycle.html#c.PyInterpreterView_FromMain)668- [`PyIter_Check()`](https://python-all.ru/3.16/c-api/iter.html#c.PyIter_Check)669- [`PyIter_Next()`](https://python-all.ru/3.16/c-api/iter.html#c.PyIter_Next)670- [`PyIter_NextItem()`](https://python-all.ru/3.16/c-api/iter.html#c.PyIter_NextItem)671- [`PyIter_Send()`](https://python-all.ru/3.16/c-api/iter.html#c.PyIter_Send)672- [`PyListIter_Type`](https://python-all.ru/3.16/c-api/iterator.html#c.PyListIter_Type)673- [`PyListRevIter_Type`](https://python-all.ru/3.16/c-api/iterator.html#c.PyListRevIter_Type)674- [`PyList_Append()`](https://python-all.ru/3.16/c-api/list.html#c.PyList_Append)675- [`PyList_AsTuple()`](https://python-all.ru/3.16/c-api/list.html#c.PyList_AsTuple)676- [`PyList_GetItem()`](https://python-all.ru/3.16/c-api/list.html#c.PyList_GetItem)677- [`PyList_GetItemRef()`](https://python-all.ru/3.16/c-api/list.html#c.PyList_GetItemRef)678- [`PyList_GetSlice()`](https://python-all.ru/3.16/c-api/list.html#c.PyList_GetSlice)679- [`PyList_Insert()`](https://python-all.ru/3.16/c-api/list.html#c.PyList_Insert)680- [`PyList_New()`](https://python-all.ru/3.16/c-api/list.html#c.PyList_New)681- [`PyList_Reverse()`](https://python-all.ru/3.16/c-api/list.html#c.PyList_Reverse)682- [`PyList_SetItem()`](https://python-all.ru/3.16/c-api/list.html#c.PyList_SetItem)683- [`PyList_SetSlice()`](https://python-all.ru/3.16/c-api/list.html#c.PyList_SetSlice)684- [`PyList_Size()`](https://python-all.ru/3.16/c-api/list.html#c.PyList_Size)685- [`PyList_Sort()`](https://python-all.ru/3.16/c-api/list.html#c.PyList_Sort)686- [`PyList_Type`](https://python-all.ru/3.16/c-api/list.html#c.PyList_Type)687- [`PyLongExport`](https://python-all.ru/3.16/c-api/long.html#c.PyLongExport)688- [`PyLongLayout`](https://python-all.ru/3.16/c-api/long.html#c.PyLongLayout)689- [`PyLongObject`](https://python-all.ru/3.16/c-api/long.html#c.PyLongObject)690- [`PyLongRangeIter_Type`](https://python-all.ru/3.16/c-api/iterator.html#c.PyLongRangeIter_Type)691- [`PyLongWriter`](https://python-all.ru/3.16/c-api/long.html#c.PyLongWriter)692- [`PyLongWriter_Create()`](https://python-all.ru/3.16/c-api/long.html#c.PyLongWriter_Create)693- [`PyLongWriter_Discard()`](https://python-all.ru/3.16/c-api/long.html#c.PyLongWriter_Discard)694- [`PyLongWriter_Finish()`](https://python-all.ru/3.16/c-api/long.html#c.PyLongWriter_Finish)695- [`PyLong_AsDouble()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_AsDouble)696- [`PyLong_AsInt()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_AsInt)697- [`PyLong_AsInt32()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_AsInt32)698- [`PyLong_AsInt64()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_AsInt64)699- [`PyLong_AsLong()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_AsLong)700- [`PyLong_AsLongAndOverflow()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_AsLongAndOverflow)701- [`PyLong_AsLongLong()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_AsLongLong)702- [`PyLong_AsLongLongAndOverflow()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_AsLongLongAndOverflow)703- [`PyLong_AsNativeBytes()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_AsNativeBytes)704- [`PyLong_AsSize_t()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_AsSize_t)705- [`PyLong_AsSsize_t()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_AsSsize_t)706- [`PyLong_AsUInt32()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_AsUInt32)707- [`PyLong_AsUInt64()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_AsUInt64)708- [`PyLong_AsUnsignedLong()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_AsUnsignedLong)709- [`PyLong_AsUnsignedLongLong()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_AsUnsignedLongLong)710- [`PyLong_AsUnsignedLongLongMask()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_AsUnsignedLongLongMask)711- [`PyLong_AsUnsignedLongMask()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_AsUnsignedLongMask)712- [`PyLong_AsVoidPtr()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_AsVoidPtr)713- [`PyLong_Export()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_Export)714- [`PyLong_FreeExport()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_FreeExport)715- [`PyLong_FromDouble()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_FromDouble)716- [`PyLong_FromInt32()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_FromInt32)717- [`PyLong_FromInt64()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_FromInt64)718- [`PyLong_FromLong()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_FromLong)719- [`PyLong_FromLongLong()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_FromLongLong)720- [`PyLong_FromNativeBytes()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_FromNativeBytes)721- [`PyLong_FromSize_t()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_FromSize_t)722- [`PyLong_FromSsize_t()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_FromSsize_t)723- [`PyLong_FromString()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_FromString)724- [`PyLong_FromUInt32()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_FromUInt32)725- [`PyLong_FromUInt64()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_FromUInt64)726- [`PyLong_FromUnsignedLong()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_FromUnsignedLong)727- [`PyLong_FromUnsignedLongLong()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_FromUnsignedLongLong)728- [`PyLong_FromUnsignedNativeBytes()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_FromUnsignedNativeBytes)729- [`PyLong_FromVoidPtr()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_FromVoidPtr)730- [`PyLong_GetInfo()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_GetInfo)731- [`PyLong_GetNativeLayout()`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_GetNativeLayout)732- [`PyLong_Type`](https://python-all.ru/3.16/c-api/long.html#c.PyLong_Type)733- [`PyMODEXPORT_FUNC`](https://python-all.ru/3.16/c-api/extension-modules.html#c.PyMODEXPORT_FUNC)734- [`PyMap_Type`](https://python-all.ru/3.16/c-api/iterator.html#c.PyMap_Type)735- [`PyMapping_Check()`](https://python-all.ru/3.16/c-api/mapping.html#c.PyMapping_Check)736- [`PyMapping_GetItemString()`](https://python-all.ru/3.16/c-api/mapping.html#c.PyMapping_GetItemString)737- [`PyMapping_GetOptionalItem()`](https://python-all.ru/3.16/c-api/mapping.html#c.PyMapping_GetOptionalItem)738- [`PyMapping_GetOptionalItemString()`](https://python-all.ru/3.16/c-api/mapping.html#c.PyMapping_GetOptionalItemString)739- [`PyMapping_HasKey()`](https://python-all.ru/3.16/c-api/mapping.html#c.PyMapping_HasKey)740- [`PyMapping_HasKeyString()`](https://python-all.ru/3.16/c-api/mapping.html#c.PyMapping_HasKeyString)741- [`PyMapping_HasKeyStringWithError()`](https://python-all.ru/3.16/c-api/mapping.html#c.PyMapping_HasKeyStringWithError)742- [`PyMapping_HasKeyWithError()`](https://python-all.ru/3.16/c-api/mapping.html#c.PyMapping_HasKeyWithError)743- [`PyMapping_Items()`](https://python-all.ru/3.16/c-api/mapping.html#c.PyMapping_Items)744- [`PyMapping_Keys()`](https://python-all.ru/3.16/c-api/mapping.html#c.PyMapping_Keys)745- [`PyMapping_Length()`](https://python-all.ru/3.16/c-api/mapping.html#c.PyMapping_Length)746- [`PyMapping_SetItemString()`](https://python-all.ru/3.16/c-api/mapping.html#c.PyMapping_SetItemString)747- [`PyMapping_Size()`](https://python-all.ru/3.16/c-api/mapping.html#c.PyMapping_Size)748- [`PyMapping_Values()`](https://python-all.ru/3.16/c-api/mapping.html#c.PyMapping_Values)749- [`PyMem_Calloc()`](https://python-all.ru/3.16/c-api/memory.html#c.PyMem_Calloc)750- [`PyMem_Free()`](https://python-all.ru/3.16/c-api/memory.html#c.PyMem_Free)751- [`PyMem_Malloc()`](https://python-all.ru/3.16/c-api/memory.html#c.PyMem_Malloc)752- [`PyMem_RawCalloc()`](https://python-all.ru/3.16/c-api/memory.html#c.PyMem_RawCalloc)753- [`PyMem_RawFree()`](https://python-all.ru/3.16/c-api/memory.html#c.PyMem_RawFree)754- [`PyMem_RawMalloc()`](https://python-all.ru/3.16/c-api/memory.html#c.PyMem_RawMalloc)755- [`PyMem_RawRealloc()`](https://python-all.ru/3.16/c-api/memory.html#c.PyMem_RawRealloc)756- [`PyMem_Realloc()`](https://python-all.ru/3.16/c-api/memory.html#c.PyMem_Realloc)757- [`PyMemberDef`](https://python-all.ru/3.16/c-api/structures.html#c.PyMemberDef)758- [`PyMemberDescr_Type`](https://python-all.ru/3.16/c-api/descriptor.html#c.PyMemberDescr_Type)759- [`PyMember_GetOne()`](https://python-all.ru/3.16/c-api/structures.html#c.PyMember_GetOne)760- [`PyMember_SetOne()`](https://python-all.ru/3.16/c-api/structures.html#c.PyMember_SetOne)761- [`PyMemoryView_FromBuffer()`](https://python-all.ru/3.16/c-api/memoryview.html#c.PyMemoryView_FromBuffer)762- [`PyMemoryView_FromMemory()`](https://python-all.ru/3.16/c-api/memoryview.html#c.PyMemoryView_FromMemory)763- [`PyMemoryView_FromObject()`](https://python-all.ru/3.16/c-api/memoryview.html#c.PyMemoryView_FromObject)764- [`PyMemoryView_GetContiguous()`](https://python-all.ru/3.16/c-api/memoryview.html#c.PyMemoryView_GetContiguous)765- [`PyMemoryView_Type`](https://python-all.ru/3.16/c-api/memoryview.html#c.PyMemoryView_Type)766- [`PyMethodDef`](https://python-all.ru/3.16/c-api/structures.html#c.PyMethodDef)767- [`PyMethodDescr_Type`](https://python-all.ru/3.16/c-api/descriptor.html#c.PyMethodDescr_Type)768- [`PyModuleDef`](https://python-all.ru/3.16/c-api/module.html#c.PyModuleDef)769- [`PyModuleDef_Base`](https://python-all.ru/3.16/c-api/module.html#c.PyModuleDef_Base)770- [`PyModuleDef_Init()`](https://python-all.ru/3.16/c-api/extension-modules.html#c.PyModuleDef_Init)771- [`PyModuleDef_Slot`](https://python-all.ru/3.16/c-api/module.html#c.PyModuleDef_Slot)772- [`PyModuleDef_Type`](https://python-all.ru/3.16/c-api/module.html#c.PyModuleDef_Type)773- [`PyModule_Add()`](https://python-all.ru/3.16/c-api/module.html#c.PyModule_Add)774- [`PyModule_AddFunctions()`](https://python-all.ru/3.16/c-api/module.html#c.PyModule_AddFunctions)775- [`PyModule_AddIntConstant()`](https://python-all.ru/3.16/c-api/module.html#c.PyModule_AddIntConstant)776- [`PyModule_AddObject()`](https://python-all.ru/3.16/c-api/module.html#c.PyModule_AddObject)777- [`PyModule_AddObjectRef()`](https://python-all.ru/3.16/c-api/module.html#c.PyModule_AddObjectRef)778- [`PyModule_AddStringConstant()`](https://python-all.ru/3.16/c-api/module.html#c.PyModule_AddStringConstant)779- [`PyModule_AddType()`](https://python-all.ru/3.16/c-api/module.html#c.PyModule_AddType)780- [`PyModule_Create2()`](https://python-all.ru/3.16/c-api/module.html#c.PyModule_Create2)781- [`PyModule_Exec()`](https://python-all.ru/3.16/c-api/module.html#c.PyModule_Exec)782- [`PyModule_ExecDef()`](https://python-all.ru/3.16/c-api/module.html#c.PyModule_ExecDef)783- [`PyModule_FromDefAndSpec2()`](https://python-all.ru/3.16/c-api/module.html#c.PyModule_FromDefAndSpec2)784- [`PyModule_FromSlotsAndSpec()`](https://python-all.ru/3.16/c-api/module.html#c.PyModule_FromSlotsAndSpec)785- [`PyModule_GetDef()`](https://python-all.ru/3.16/c-api/module.html#c.PyModule_GetDef)786- [`PyModule_GetDict()`](https://python-all.ru/3.16/c-api/module.html#c.PyModule_GetDict)787- [`PyModule_GetFilename()`](https://python-all.ru/3.16/c-api/module.html#c.PyModule_GetFilename)788- [`PyModule_GetFilenameObject()`](https://python-all.ru/3.16/c-api/module.html#c.PyModule_GetFilenameObject)789- [`PyModule_GetName()`](https://python-all.ru/3.16/c-api/module.html#c.PyModule_GetName)790- [`PyModule_GetNameObject()`](https://python-all.ru/3.16/c-api/module.html#c.PyModule_GetNameObject)791- [`PyModule_GetState()`](https://python-all.ru/3.16/c-api/module.html#c.PyModule_GetState)792- [`PyModule_GetStateSize()`](https://python-all.ru/3.16/c-api/module.html#c.PyModule_GetStateSize)793- [`PyModule_GetState_DuringGC()`](https://python-all.ru/3.16/c-api/gcsupport.html#c.PyModule_GetState_DuringGC)794- [`PyModule_GetToken()`](https://python-all.ru/3.16/c-api/module.html#c.PyModule_GetToken)795- [`PyModule_GetToken_DuringGC()`](https://python-all.ru/3.16/c-api/gcsupport.html#c.PyModule_GetToken_DuringGC)796- [`PyModule_New()`](https://python-all.ru/3.16/c-api/module.html#c.PyModule_New)797- [`PyModule_NewObject()`](https://python-all.ru/3.16/c-api/module.html#c.PyModule_NewObject)798- [`PyModule_SetDocString()`](https://python-all.ru/3.16/c-api/module.html#c.PyModule_SetDocString)799- [`PyModule_Type`](https://python-all.ru/3.16/c-api/module.html#c.PyModule_Type)800- [`PyNumber_Absolute()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_Absolute)801- [`PyNumber_Add()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_Add)802- [`PyNumber_And()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_And)803- [`PyNumber_AsSsize_t()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_AsSsize_t)804- [`PyNumber_Check()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_Check)805- [`PyNumber_Divmod()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_Divmod)806- [`PyNumber_Float()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_Float)807- [`PyNumber_FloorDivide()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_FloorDivide)808- [`PyNumber_InPlaceAdd()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_InPlaceAdd)809- [`PyNumber_InPlaceAnd()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_InPlaceAnd)810- [`PyNumber_InPlaceFloorDivide()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_InPlaceFloorDivide)811- [`PyNumber_InPlaceLshift()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_InPlaceLshift)812- [`PyNumber_InPlaceMatrixMultiply()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_InPlaceMatrixMultiply)813- [`PyNumber_InPlaceMultiply()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_InPlaceMultiply)814- [`PyNumber_InPlaceOr()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_InPlaceOr)815- [`PyNumber_InPlacePower()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_InPlacePower)816- [`PyNumber_InPlaceRemainder()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_InPlaceRemainder)817- [`PyNumber_InPlaceRshift()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_InPlaceRshift)818- [`PyNumber_InPlaceSubtract()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_InPlaceSubtract)819- [`PyNumber_InPlaceTrueDivide()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_InPlaceTrueDivide)820- [`PyNumber_InPlaceXor()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_InPlaceXor)821- [`PyNumber_Index()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_Index)822- [`PyNumber_Invert()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_Invert)823- [`PyNumber_Long()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_Long)824- [`PyNumber_Lshift()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_Lshift)825- [`PyNumber_MatrixMultiply()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_MatrixMultiply)826- [`PyNumber_Multiply()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_Multiply)827- [`PyNumber_Negative()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_Negative)828- [`PyNumber_Or()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_Or)829- [`PyNumber_Positive()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_Positive)830- [`PyNumber_Power()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_Power)831- [`PyNumber_Remainder()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_Remainder)832- [`PyNumber_Rshift()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_Rshift)833- [`PyNumber_Subtract()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_Subtract)834- [`PyNumber_ToBase()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_ToBase)835- [`PyNumber_TrueDivide()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_TrueDivide)836- [`PyNumber_Xor()`](https://python-all.ru/3.16/c-api/number.html#c.PyNumber_Xor)837- [`PyOS_AfterFork()`](https://python-all.ru/3.16/c-api/sys.html#c.PyOS_AfterFork)838- [`PyOS_AfterFork_Child()`](https://python-all.ru/3.16/c-api/sys.html#c.PyOS_AfterFork_Child)839- [`PyOS_AfterFork_Parent()`](https://python-all.ru/3.16/c-api/sys.html#c.PyOS_AfterFork_Parent)840- [`PyOS_BeforeFork()`](https://python-all.ru/3.16/c-api/sys.html#c.PyOS_BeforeFork)841- [`PyOS_CheckStack()`](https://python-all.ru/3.16/c-api/sys.html#c.PyOS_CheckStack)842- [`PyOS_FSPath()`](https://python-all.ru/3.16/c-api/sys.html#c.PyOS_FSPath)843- [`PyOS_InputHook`](https://python-all.ru/3.16/c-api/veryhigh.html#c.PyOS_InputHook)844- [`PyOS_InterruptOccurred()`](https://python-all.ru/3.16/c-api/sys.html#c.PyOS_InterruptOccurred)845- [`PyOS_double_to_string()`](https://python-all.ru/3.16/c-api/conversion.html#c.PyOS_double_to_string)846- [`PyOS_getsig()`](https://python-all.ru/3.16/c-api/sys.html#c.PyOS_getsig)847- [`PyOS_mystricmp()`](https://python-all.ru/3.16/c-api/conversion.html#c.PyOS_mystricmp)848- [`PyOS_mystrnicmp()`](https://python-all.ru/3.16/c-api/conversion.html#c.PyOS_mystrnicmp)849- [`PyOS_setsig()`](https://python-all.ru/3.16/c-api/sys.html#c.PyOS_setsig)850- [`PyOS_sighandler_t`](https://python-all.ru/3.16/c-api/sys.html#c.PyOS_sighandler_t)851- [`PyOS_snprintf()`](https://python-all.ru/3.16/c-api/conversion.html#c.PyOS_snprintf)852- [`PyOS_string_to_double()`](https://python-all.ru/3.16/c-api/conversion.html#c.PyOS_string_to_double)853- [`PyOS_strtol()`](https://python-all.ru/3.16/c-api/conversion.html#c.PyOS_strtol)854- [`PyOS_strtoul()`](https://python-all.ru/3.16/c-api/conversion.html#c.PyOS_strtoul)855- [`PyOS_vsnprintf()`](https://python-all.ru/3.16/c-api/conversion.html#c.PyOS_vsnprintf)856- [`PyObject`](https://python-all.ru/3.16/c-api/structures.html#c.PyObject)857- [`PyObject.ob_refcnt`](https://python-all.ru/3.16/c-api/structures.html#c.PyObject.ob_refcnt)858- [`PyObject.ob_type`](https://python-all.ru/3.16/c-api/structures.html#c.PyObject.ob_type)859- [`PyObject_ASCII()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_ASCII)860- [`PyObject_AsFileDescriptor()`](https://python-all.ru/3.16/c-api/file.html#c.PyObject_AsFileDescriptor)861- [`PyObject_Bytes()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_Bytes)862- [`PyObject_Call()`](https://python-all.ru/3.16/c-api/call.html#c.PyObject_Call)863- [`PyObject_CallFinalizerFromDealloc()`](https://python-all.ru/3.16/c-api/lifecycle.html#c.PyObject_CallFinalizerFromDealloc)864- [`PyObject_CallFunction()`](https://python-all.ru/3.16/c-api/call.html#c.PyObject_CallFunction)865- [`PyObject_CallFunctionObjArgs()`](https://python-all.ru/3.16/c-api/call.html#c.PyObject_CallFunctionObjArgs)866- [`PyObject_CallMethod()`](https://python-all.ru/3.16/c-api/call.html#c.PyObject_CallMethod)867- [`PyObject_CallMethodObjArgs()`](https://python-all.ru/3.16/c-api/call.html#c.PyObject_CallMethodObjArgs)868- [`PyObject_CallNoArgs()`](https://python-all.ru/3.16/c-api/call.html#c.PyObject_CallNoArgs)869- [`PyObject_CallObject()`](https://python-all.ru/3.16/c-api/call.html#c.PyObject_CallObject)870- [`PyObject_Calloc()`](https://python-all.ru/3.16/c-api/memory.html#c.PyObject_Calloc)871- [`PyObject_CheckBuffer()`](https://python-all.ru/3.16/c-api/buffer.html#c.PyObject_CheckBuffer)872- [`PyObject_ClearWeakRefs()`](https://python-all.ru/3.16/c-api/weakref.html#c.PyObject_ClearWeakRefs)873- [`PyObject_CopyData()`](https://python-all.ru/3.16/c-api/buffer.html#c.PyObject_CopyData)874- [`PyObject_DelAttr()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_DelAttr)875- [`PyObject_DelAttrString()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_DelAttrString)876- [`PyObject_DelItem()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_DelItem)877- [`PyObject_DelItemString()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_DelItemString)878- [`PyObject_Dir()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_Dir)879- [`PyObject_Format()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_Format)880- [`PyObject_Free()`](https://python-all.ru/3.16/c-api/memory.html#c.PyObject_Free)881- [`PyObject_GC_Del()`](https://python-all.ru/3.16/c-api/gcsupport.html#c.PyObject_GC_Del)882- [`PyObject_GC_IsFinalized()`](https://python-all.ru/3.16/c-api/gcsupport.html#c.PyObject_GC_IsFinalized)883- [`PyObject_GC_IsTracked()`](https://python-all.ru/3.16/c-api/gcsupport.html#c.PyObject_GC_IsTracked)884- [`PyObject_GC_Track()`](https://python-all.ru/3.16/c-api/gcsupport.html#c.PyObject_GC_Track)885- [`PyObject_GC_UnTrack()`](https://python-all.ru/3.16/c-api/gcsupport.html#c.PyObject_GC_UnTrack)886- [`PyObject_GenericGetAttr()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_GenericGetAttr)887- [`PyObject_GenericGetDict()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_GenericGetDict)888- [`PyObject_GenericSetAttr()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_GenericSetAttr)889- [`PyObject_GenericSetDict()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_GenericSetDict)890- [`PyObject_GetAIter()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_GetAIter)891- [`PyObject_GetAttr()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_GetAttr)892- [`PyObject_GetAttrString()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_GetAttrString)893- [`PyObject_GetBuffer()`](https://python-all.ru/3.16/c-api/buffer.html#c.PyObject_GetBuffer)894- [`PyObject_GetItem()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_GetItem)895- [`PyObject_GetIter()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_GetIter)896- [`PyObject_GetOptionalAttr()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_GetOptionalAttr)897- [`PyObject_GetOptionalAttrString()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_GetOptionalAttrString)898- [`PyObject_GetTypeData()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_GetTypeData)899- [`PyObject_GetTypeData_DuringGC()`](https://python-all.ru/3.16/c-api/gcsupport.html#c.PyObject_GetTypeData_DuringGC)900- [`PyObject_HasAttr()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_HasAttr)901- [`PyObject_HasAttrString()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_HasAttrString)902- [`PyObject_HasAttrStringWithError()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_HasAttrStringWithError)903- [`PyObject_HasAttrWithError()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_HasAttrWithError)904- [`PyObject_Hash()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_Hash)905- [`PyObject_HashNotImplemented()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_HashNotImplemented)906- [`PyObject_Init()`](https://python-all.ru/3.16/c-api/allocation.html#c.PyObject_Init)907- [`PyObject_InitVar()`](https://python-all.ru/3.16/c-api/allocation.html#c.PyObject_InitVar)908- [`PyObject_IsInstance()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_IsInstance)909- [`PyObject_IsSubclass()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_IsSubclass)910- [`PyObject_IsTrue()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_IsTrue)911- [`PyObject_Length()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_Length)912- [`PyObject_Malloc()`](https://python-all.ru/3.16/c-api/memory.html#c.PyObject_Malloc)913- [`PyObject_Not()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_Not)914- [`PyObject_Realloc()`](https://python-all.ru/3.16/c-api/memory.html#c.PyObject_Realloc)915- [`PyObject_Repr()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_Repr)916- [`PyObject_RichCompare()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_RichCompare)917- [`PyObject_RichCompareBool()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_RichCompareBool)918- [`PyObject_SelfIter()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_SelfIter)919- [`PyObject_SetAttr()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_SetAttr)920- [`PyObject_SetAttrString()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_SetAttrString)921- [`PyObject_SetItem()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_SetItem)922- [`PyObject_Size()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_Size)923- [`PyObject_Str()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_Str)924- [`PyObject_Type()`](https://python-all.ru/3.16/c-api/object.html#c.PyObject_Type)925- [`PyObject_Vectorcall()`](https://python-all.ru/3.16/c-api/call.html#c.PyObject_Vectorcall)926- [`PyObject_VectorcallMethod()`](https://python-all.ru/3.16/c-api/call.html#c.PyObject_VectorcallMethod)927- [`PyProperty_Type`](https://python-all.ru/3.16/c-api/descriptor.html#c.PyProperty_Type)928- [`PyRangeIter_Type`](https://python-all.ru/3.16/c-api/iterator.html#c.PyRangeIter_Type)929- [`PyRange_Type`](https://python-all.ru/3.16/c-api/iterator.html#c.PyRange_Type)930- [`PyReversed_Type`](https://python-all.ru/3.16/c-api/iterator.html#c.PyReversed_Type)931- [`PySeqIter_New()`](https://python-all.ru/3.16/c-api/iterator.html#c.PySeqIter_New)932- [`PySeqIter_Type`](https://python-all.ru/3.16/c-api/iterator.html#c.PySeqIter_Type)933- [`PySequence_Check()`](https://python-all.ru/3.16/c-api/sequence.html#c.PySequence_Check)934- [`PySequence_Concat()`](https://python-all.ru/3.16/c-api/sequence.html#c.PySequence_Concat)935- [`PySequence_Contains()`](https://python-all.ru/3.16/c-api/sequence.html#c.PySequence_Contains)936- [`PySequence_Count()`](https://python-all.ru/3.16/c-api/sequence.html#c.PySequence_Count)937- [`PySequence_DelItem()`](https://python-all.ru/3.16/c-api/sequence.html#c.PySequence_DelItem)938- [`PySequence_DelSlice()`](https://python-all.ru/3.16/c-api/sequence.html#c.PySequence_DelSlice)939- [`PySequence_Fast()`](https://python-all.ru/3.16/c-api/sequence.html#c.PySequence_Fast)940- [`PySequence_GetItem()`](https://python-all.ru/3.16/c-api/sequence.html#c.PySequence_GetItem)941- [`PySequence_GetSlice()`](https://python-all.ru/3.16/c-api/sequence.html#c.PySequence_GetSlice)942- [`PySequence_In()`](https://python-all.ru/3.16/c-api/sequence.html#c.PySequence_In)943- [`PySequence_InPlaceConcat()`](https://python-all.ru/3.16/c-api/sequence.html#c.PySequence_InPlaceConcat)944- [`PySequence_InPlaceRepeat()`](https://python-all.ru/3.16/c-api/sequence.html#c.PySequence_InPlaceRepeat)945- [`PySequence_Index()`](https://python-all.ru/3.16/c-api/sequence.html#c.PySequence_Index)946- [`PySequence_Length()`](https://python-all.ru/3.16/c-api/sequence.html#c.PySequence_Length)947- [`PySequence_List()`](https://python-all.ru/3.16/c-api/sequence.html#c.PySequence_List)948- [`PySequence_Repeat()`](https://python-all.ru/3.16/c-api/sequence.html#c.PySequence_Repeat)949- [`PySequence_SetItem()`](https://python-all.ru/3.16/c-api/sequence.html#c.PySequence_SetItem)950- [`PySequence_SetSlice()`](https://python-all.ru/3.16/c-api/sequence.html#c.PySequence_SetSlice)951- [`PySequence_Size()`](https://python-all.ru/3.16/c-api/sequence.html#c.PySequence_Size)952- [`PySequence_Tuple()`](https://python-all.ru/3.16/c-api/sequence.html#c.PySequence_Tuple)953- [`PySetIter_Type`](https://python-all.ru/3.16/c-api/iterator.html#c.PySetIter_Type)954- [`PySet_Add()`](https://python-all.ru/3.16/c-api/set.html#c.PySet_Add)955- [`PySet_Clear()`](https://python-all.ru/3.16/c-api/set.html#c.PySet_Clear)956- [`PySet_Contains()`](https://python-all.ru/3.16/c-api/set.html#c.PySet_Contains)957- [`PySet_Discard()`](https://python-all.ru/3.16/c-api/set.html#c.PySet_Discard)958- [`PySet_New()`](https://python-all.ru/3.16/c-api/set.html#c.PySet_New)959- [`PySet_Pop()`](https://python-all.ru/3.16/c-api/set.html#c.PySet_Pop)960- [`PySet_Size()`](https://python-all.ru/3.16/c-api/set.html#c.PySet_Size)961- [`PySet_Type`](https://python-all.ru/3.16/c-api/set.html#c.PySet_Type)962- [`PySlice_AdjustIndices()`](https://python-all.ru/3.16/c-api/slice.html#c.PySlice_AdjustIndices)963- [`PySlice_GetIndices()`](https://python-all.ru/3.16/c-api/slice.html#c.PySlice_GetIndices)964- [`PySlice_GetIndicesEx()`](https://python-all.ru/3.16/c-api/slice.html#c.PySlice_GetIndicesEx)965- [`PySlice_New()`](https://python-all.ru/3.16/c-api/slice.html#c.PySlice_New)966- [`PySlice_Type`](https://python-all.ru/3.16/c-api/slice.html#c.PySlice_Type)967- [`PySlice_Unpack()`](https://python-all.ru/3.16/c-api/slice.html#c.PySlice_Unpack)968- [`PySlot`](https://python-all.ru/3.16/c-api/slots.html#c.PySlot)969- [`PySlot_DATA`](https://python-all.ru/3.16/c-api/slots.html#c.PySlot_DATA)970- [`PySlot_END`](https://python-all.ru/3.16/c-api/slots.html#c.PySlot_END)971- [`PySlot_FUNC`](https://python-all.ru/3.16/c-api/slots.html#c.PySlot_FUNC)972- [`PySlot_INT64`](https://python-all.ru/3.16/c-api/slots.html#c.PySlot_INT64)973- [`PySlot_INTPTR`](https://python-all.ru/3.16/c-api/slots.html#c.PySlot_INTPTR)974- [`PySlot_OPTIONAL`](https://python-all.ru/3.16/c-api/slots.html#c.PySlot_OPTIONAL)975- [`PySlot_PTR`](https://python-all.ru/3.16/c-api/slots.html#c.PySlot_PTR)976- [`PySlot_PTR_STATIC`](https://python-all.ru/3.16/c-api/slots.html#c.PySlot_PTR_STATIC)977- [`PySlot_SIZE`](https://python-all.ru/3.16/c-api/slots.html#c.PySlot_SIZE)978- [`PySlot_STATIC`](https://python-all.ru/3.16/c-api/slots.html#c.PySlot_STATIC)979- [`PySlot_STATIC_DATA`](https://python-all.ru/3.16/c-api/slots.html#c.PySlot_STATIC_DATA)980- [`PySlot_UINT64`](https://python-all.ru/3.16/c-api/slots.html#c.PySlot_UINT64)981- [`PyState_AddModule()`](https://python-all.ru/3.16/c-api/module.html#c.PyState_AddModule)982- [`PyState_FindModule()`](https://python-all.ru/3.16/c-api/module.html#c.PyState_FindModule)983- [`PyState_RemoveModule()`](https://python-all.ru/3.16/c-api/module.html#c.PyState_RemoveModule)984- [`PyStructSequence_Desc`](https://python-all.ru/3.16/c-api/tuple.html#c.PyStructSequence_Desc)985- [`PyStructSequence_Field`](https://python-all.ru/3.16/c-api/tuple.html#c.PyStructSequence_Field)986- [`PyStructSequence_GetItem()`](https://python-all.ru/3.16/c-api/tuple.html#c.PyStructSequence_GetItem)987- [`PyStructSequence_New()`](https://python-all.ru/3.16/c-api/tuple.html#c.PyStructSequence_New)988- [`PyStructSequence_NewType()`](https://python-all.ru/3.16/c-api/tuple.html#c.PyStructSequence_NewType)989- [`PyStructSequence_SetItem()`](https://python-all.ru/3.16/c-api/tuple.html#c.PyStructSequence_SetItem)990- [`PyStructSequence_UnnamedField`](https://python-all.ru/3.16/c-api/tuple.html#c.PyStructSequence_UnnamedField)991- [`PySuper_Type`](https://python-all.ru/3.16/c-api/descriptor.html#c.PySuper_Type)992- [`PySys_Audit()`](https://python-all.ru/3.16/c-api/sys.html#c.PySys_Audit)993- [`PySys_AuditTuple()`](https://python-all.ru/3.16/c-api/sys.html#c.PySys_AuditTuple)994- [`PySys_FormatStderr()`](https://python-all.ru/3.16/c-api/sys.html#c.PySys_FormatStderr)995- [`PySys_FormatStdout()`](https://python-all.ru/3.16/c-api/sys.html#c.PySys_FormatStdout)996- [`PySys_GetAttr()`](https://python-all.ru/3.16/c-api/sys.html#c.PySys_GetAttr)997- [`PySys_GetAttrString()`](https://python-all.ru/3.16/c-api/sys.html#c.PySys_GetAttrString)998- [`PySys_GetObject()`](https://python-all.ru/3.16/c-api/sys.html#c.PySys_GetObject)999- [`PySys_GetOptionalAttr()`](https://python-all.ru/3.16/c-api/sys.html#c.PySys_GetOptionalAttr)1000- [`PySys_GetOptionalAttrString()`](https://python-all.ru/3.16/c-api/sys.html#c.PySys_GetOptionalAttrString)1001- [`PySys_GetXOptions()`](https://python-all.ru/3.16/c-api/sys.html#c.PySys_GetXOptions)1002- [`PySys_SetArgv()`](https://python-all.ru/3.16/c-api/interp-lifecycle.html#c.PySys_SetArgv)1003- [`PySys_SetArgvEx()`](https://python-all.ru/3.16/c-api/interp-lifecycle.html#c.PySys_SetArgvEx)1004- [`PySys_SetObject()`](https://python-all.ru/3.16/c-api/sys.html#c.PySys_SetObject)1005- [`PySys_WriteStderr()`](https://python-all.ru/3.16/c-api/sys.html#c.PySys_WriteStderr)1006- [`PySys_WriteStdout()`](https://python-all.ru/3.16/c-api/sys.html#c.PySys_WriteStdout)1007- [`PyThreadState`](https://python-all.ru/3.16/c-api/threads.html#c.PyThreadState)1008- [`PyThreadStateToken`](https://python-all.ru/3.16/c-api/threads.html#c.PyThreadStateToken)1009- [`PyThreadState_Clear()`](https://python-all.ru/3.16/c-api/threads.html#c.PyThreadState_Clear)1010- [`PyThreadState_Delete()`](https://python-all.ru/3.16/c-api/threads.html#c.PyThreadState_Delete)1011- [`PyThreadState_Ensure()`](https://python-all.ru/3.16/c-api/threads.html#c.PyThreadState_Ensure)1012- [`PyThreadState_EnsureFromView()`](https://python-all.ru/3.16/c-api/threads.html#c.PyThreadState_EnsureFromView)1013- [`PyThreadState_Get()`](https://python-all.ru/3.16/c-api/threads.html#c.PyThreadState_Get)1014- [`PyThreadState_GetDict()`](https://python-all.ru/3.16/c-api/threads.html#c.PyThreadState_GetDict)1015- [`PyThreadState_GetFrame()`](https://python-all.ru/3.16/c-api/threads.html#c.PyThreadState_GetFrame)1016- [`PyThreadState_GetID()`](https://python-all.ru/3.16/c-api/threads.html#c.PyThreadState_GetID)1017- [`PyThreadState_GetInterpreter()`](https://python-all.ru/3.16/c-api/threads.html#c.PyThreadState_GetInterpreter)1018- [`PyThreadState_New()`](https://python-all.ru/3.16/c-api/threads.html#c.PyThreadState_New)1019- [`PyThreadState_Release()`](https://python-all.ru/3.16/c-api/threads.html#c.PyThreadState_Release)1020- [`PyThreadState_SetAsyncExc()`](https://python-all.ru/3.16/c-api/threads.html#c.PyThreadState_SetAsyncExc)1021- [`PyThreadState_Swap()`](https://python-all.ru/3.16/c-api/threads.html#c.PyThreadState_Swap)1022- [`PyThread_GetInfo()`](https://python-all.ru/3.16/c-api/threads.html#c.PyThread_GetInfo)1023- [`PyThread_ReInitTLS()`](https://python-all.ru/3.16/c-api/tls.html#c.PyThread_ReInitTLS)1024- [`PyThread_acquire_lock()`](https://python-all.ru/3.16/c-api/synchronization.html#c.PyThread_acquire_lock)1025- [`PyThread_acquire_lock_timed()`](https://python-all.ru/3.16/c-api/synchronization.html#c.PyThread_acquire_lock_timed)1026- [`PyThread_allocate_lock()`](https://python-all.ru/3.16/c-api/synchronization.html#c.PyThread_allocate_lock)1027- [`PyThread_create_key()`](https://python-all.ru/3.16/c-api/tls.html#c.PyThread_create_key)1028- [`PyThread_delete_key()`](https://python-all.ru/3.16/c-api/tls.html#c.PyThread_delete_key)1029- [`PyThread_delete_key_value()`](https://python-all.ru/3.16/c-api/tls.html#c.PyThread_delete_key_value)1030- [`PyThread_exit_thread()`](https://python-all.ru/3.16/c-api/threads.html#c.PyThread_exit_thread)1031- [`PyThread_free_lock()`](https://python-all.ru/3.16/c-api/synchronization.html#c.PyThread_free_lock)1032- [`PyThread_get_key_value()`](https://python-all.ru/3.16/c-api/tls.html#c.PyThread_get_key_value)1033- [`PyThread_get_stacksize()`](https://python-all.ru/3.16/c-api/threads.html#c.PyThread_get_stacksize)1034- [`PyThread_get_thread_ident()`](https://python-all.ru/3.16/c-api/threads.html#c.PyThread_get_thread_ident)1035- [`PyThread_get_thread_native_id()`](https://python-all.ru/3.16/c-api/threads.html#c.PyThread_get_thread_native_id)1036- [`PyThread_init_thread()`](https://python-all.ru/3.16/c-api/threads.html#c.PyThread_init_thread)1037- [`PyThread_release_lock()`](https://python-all.ru/3.16/c-api/synchronization.html#c.PyThread_release_lock)1038- [`PyThread_set_key_value()`](https://python-all.ru/3.16/c-api/tls.html#c.PyThread_set_key_value)1039- [`PyThread_set_stacksize()`](https://python-all.ru/3.16/c-api/threads.html#c.PyThread_set_stacksize)1040- [`PyThread_start_new_thread()`](https://python-all.ru/3.16/c-api/threads.html#c.PyThread_start_new_thread)1041- [`PyThread_tss_alloc()`](https://python-all.ru/3.16/c-api/tls.html#c.PyThread_tss_alloc)1042- [`PyThread_tss_create()`](https://python-all.ru/3.16/c-api/tls.html#c.PyThread_tss_create)1043- [`PyThread_tss_delete()`](https://python-all.ru/3.16/c-api/tls.html#c.PyThread_tss_delete)1044- [`PyThread_tss_free()`](https://python-all.ru/3.16/c-api/tls.html#c.PyThread_tss_free)1045- [`PyThread_tss_get()`](https://python-all.ru/3.16/c-api/tls.html#c.PyThread_tss_get)1046- [`PyThread_tss_is_created()`](https://python-all.ru/3.16/c-api/tls.html#c.PyThread_tss_is_created)1047- [`PyThread_tss_set()`](https://python-all.ru/3.16/c-api/tls.html#c.PyThread_tss_set)1048- [`PyTraceBack_Here()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyTraceBack_Here)1049- [`PyTraceBack_Print()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyTraceBack_Print)1050- [`PyTraceBack_Type`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyTraceBack_Type)1051- [`PyTupleIter_Type`](https://python-all.ru/3.16/c-api/iterator.html#c.PyTupleIter_Type)1052- [`PyTuple_GetItem()`](https://python-all.ru/3.16/c-api/tuple.html#c.PyTuple_GetItem)1053- [`PyTuple_GetSlice()`](https://python-all.ru/3.16/c-api/tuple.html#c.PyTuple_GetSlice)1054- [`PyTuple_New()`](https://python-all.ru/3.16/c-api/tuple.html#c.PyTuple_New)1055- [`PyTuple_Pack()`](https://python-all.ru/3.16/c-api/tuple.html#c.PyTuple_Pack)1056- [`PyTuple_SetItem()`](https://python-all.ru/3.16/c-api/tuple.html#c.PyTuple_SetItem)1057- [`PyTuple_Size()`](https://python-all.ru/3.16/c-api/tuple.html#c.PyTuple_Size)1058- [`PyTuple_Type`](https://python-all.ru/3.16/c-api/tuple.html#c.PyTuple_Type)1059- [`PyTypeObject`](https://python-all.ru/3.16/c-api/type.html#c.PyTypeObject)1060- [`PyType_ClearCache()`](https://python-all.ru/3.16/c-api/type.html#c.PyType_ClearCache)1061- [`PyType_Freeze()`](https://python-all.ru/3.16/c-api/type.html#c.PyType_Freeze)1062- [`PyType_FromMetaclass()`](https://python-all.ru/3.16/c-api/type.html#c.PyType_FromMetaclass)1063- [`PyType_FromModuleAndSpec()`](https://python-all.ru/3.16/c-api/type.html#c.PyType_FromModuleAndSpec)1064- [`PyType_FromSlots()`](https://python-all.ru/3.16/c-api/type.html#c.PyType_FromSlots)1065- [`PyType_FromSpec()`](https://python-all.ru/3.16/c-api/type.html#c.PyType_FromSpec)1066- [`PyType_FromSpecWithBases()`](https://python-all.ru/3.16/c-api/type.html#c.PyType_FromSpecWithBases)1067- [`PyType_GenericAlloc()`](https://python-all.ru/3.16/c-api/type.html#c.PyType_GenericAlloc)1068- [`PyType_GenericNew()`](https://python-all.ru/3.16/c-api/type.html#c.PyType_GenericNew)1069- [`PyType_GetBaseByToken()`](https://python-all.ru/3.16/c-api/type.html#c.PyType_GetBaseByToken)1070- [`PyType_GetBaseByToken_DuringGC()`](https://python-all.ru/3.16/c-api/gcsupport.html#c.PyType_GetBaseByToken_DuringGC)1071- [`PyType_GetFlags()`](https://python-all.ru/3.16/c-api/type.html#c.PyType_GetFlags)1072- [`PyType_GetFullyQualifiedName()`](https://python-all.ru/3.16/c-api/type.html#c.PyType_GetFullyQualifiedName)1073- [`PyType_GetModule()`](https://python-all.ru/3.16/c-api/type.html#c.PyType_GetModule)1074- [`PyType_GetModuleByDef()`](https://python-all.ru/3.16/c-api/type.html#c.PyType_GetModuleByDef)1075- [`PyType_GetModuleByToken()`](https://python-all.ru/3.16/c-api/type.html#c.PyType_GetModuleByToken)1076- [`PyType_GetModuleByToken_DuringGC()`](https://python-all.ru/3.16/c-api/gcsupport.html#c.PyType_GetModuleByToken_DuringGC)1077- [`PyType_GetModuleName()`](https://python-all.ru/3.16/c-api/type.html#c.PyType_GetModuleName)1078- [`PyType_GetModuleState()`](https://python-all.ru/3.16/c-api/type.html#c.PyType_GetModuleState)1079- [`PyType_GetModuleState_DuringGC()`](https://python-all.ru/3.16/c-api/gcsupport.html#c.PyType_GetModuleState_DuringGC)1080- [`PyType_GetModule_DuringGC()`](https://python-all.ru/3.16/c-api/gcsupport.html#c.PyType_GetModule_DuringGC)1081- [`PyType_GetName()`](https://python-all.ru/3.16/c-api/type.html#c.PyType_GetName)1082- [`PyType_GetQualName()`](https://python-all.ru/3.16/c-api/type.html#c.PyType_GetQualName)1083- [`PyType_GetSlot()`](https://python-all.ru/3.16/c-api/type.html#c.PyType_GetSlot)1084- [`PyType_GetTypeDataSize()`](https://python-all.ru/3.16/c-api/object.html#c.PyType_GetTypeDataSize)1085- [`PyType_IsSubtype()`](https://python-all.ru/3.16/c-api/type.html#c.PyType_IsSubtype)1086- [`PyType_Modified()`](https://python-all.ru/3.16/c-api/type.html#c.PyType_Modified)1087- [`PyType_Ready()`](https://python-all.ru/3.16/c-api/type.html#c.PyType_Ready)1088- [`PyType_Slot`](https://python-all.ru/3.16/c-api/type.html#c.PyType_Slot)1089- [`PyType_Spec`](https://python-all.ru/3.16/c-api/type.html#c.PyType_Spec)1090- [`PyType_Type`](https://python-all.ru/3.16/c-api/type.html#c.PyType_Type)1091- [`PyUnicodeDecodeError_Create()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyUnicodeDecodeError_Create)1092- [`PyUnicodeDecodeError_GetEncoding()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyUnicodeDecodeError_GetEncoding)1093- [`PyUnicodeDecodeError_GetEnd()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyUnicodeDecodeError_GetEnd)1094- [`PyUnicodeDecodeError_GetObject()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyUnicodeDecodeError_GetObject)1095- [`PyUnicodeDecodeError_GetReason()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyUnicodeDecodeError_GetReason)1096- [`PyUnicodeDecodeError_GetStart()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyUnicodeDecodeError_GetStart)1097- [`PyUnicodeDecodeError_SetEnd()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyUnicodeDecodeError_SetEnd)1098- [`PyUnicodeDecodeError_SetReason()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyUnicodeDecodeError_SetReason)1099- [`PyUnicodeDecodeError_SetStart()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyUnicodeDecodeError_SetStart)1100- [`PyUnicodeEncodeError_GetEncoding()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyUnicodeEncodeError_GetEncoding)1101- [`PyUnicodeEncodeError_GetEnd()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyUnicodeEncodeError_GetEnd)1102- [`PyUnicodeEncodeError_GetObject()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyUnicodeEncodeError_GetObject)1103- [`PyUnicodeEncodeError_GetReason()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyUnicodeEncodeError_GetReason)1104- [`PyUnicodeEncodeError_GetStart()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyUnicodeEncodeError_GetStart)1105- [`PyUnicodeEncodeError_SetEnd()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyUnicodeEncodeError_SetEnd)1106- [`PyUnicodeEncodeError_SetReason()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyUnicodeEncodeError_SetReason)1107- [`PyUnicodeEncodeError_SetStart()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyUnicodeEncodeError_SetStart)1108- [`PyUnicodeIter_Type`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicodeIter_Type)1109- [`PyUnicodeTranslateError_GetEnd()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyUnicodeTranslateError_GetEnd)1110- [`PyUnicodeTranslateError_GetObject()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyUnicodeTranslateError_GetObject)1111- [`PyUnicodeTranslateError_GetReason()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyUnicodeTranslateError_GetReason)1112- [`PyUnicodeTranslateError_GetStart()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyUnicodeTranslateError_GetStart)1113- [`PyUnicodeTranslateError_SetEnd()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyUnicodeTranslateError_SetEnd)1114- [`PyUnicodeTranslateError_SetReason()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyUnicodeTranslateError_SetReason)1115- [`PyUnicodeTranslateError_SetStart()`](https://python-all.ru/3.16/c-api/exceptions.html#c.PyUnicodeTranslateError_SetStart)1116- [`PyUnicode_Append()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_Append)1117- [`PyUnicode_AppendAndDel()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_AppendAndDel)1118- [`PyUnicode_AsASCIIString()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_AsASCIIString)1119- [`PyUnicode_AsCharmapString()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_AsCharmapString)1120- [`PyUnicode_AsEncodedString()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_AsEncodedString)1121- [`PyUnicode_AsLatin1String()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_AsLatin1String)1122- [`PyUnicode_AsMBCSString()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_AsMBCSString)1123- [`PyUnicode_AsRawUnicodeEscapeString()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_AsRawUnicodeEscapeString)1124- [`PyUnicode_AsUCS4()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_AsUCS4)1125- [`PyUnicode_AsUCS4Copy()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_AsUCS4Copy)1126- [`PyUnicode_AsUTF16String()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_AsUTF16String)1127- [`PyUnicode_AsUTF32String()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_AsUTF32String)1128- [`PyUnicode_AsUTF8AndSize()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_AsUTF8AndSize)1129- [`PyUnicode_AsUTF8String()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_AsUTF8String)1130- [`PyUnicode_AsUnicodeEscapeString()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_AsUnicodeEscapeString)1131- [`PyUnicode_AsWideChar()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_AsWideChar)1132- [`PyUnicode_AsWideCharString()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_AsWideCharString)1133- [`PyUnicode_BuildEncodingMap()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_BuildEncodingMap)1134- [`PyUnicode_Compare()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_Compare)1135- [`PyUnicode_CompareWithASCIIString()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_CompareWithASCIIString)1136- [`PyUnicode_Concat()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_Concat)1137- [`PyUnicode_Contains()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_Contains)1138- [`PyUnicode_Count()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_Count)1139- [`PyUnicode_Decode()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_Decode)1140- [`PyUnicode_DecodeASCII()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_DecodeASCII)1141- [`PyUnicode_DecodeCharmap()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_DecodeCharmap)1142- [`PyUnicode_DecodeCodePageStateful()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_DecodeCodePageStateful)1143- [`PyUnicode_DecodeFSDefault()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_DecodeFSDefault)1144- [`PyUnicode_DecodeFSDefaultAndSize()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_DecodeFSDefaultAndSize)1145- [`PyUnicode_DecodeLatin1()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_DecodeLatin1)1146- [`PyUnicode_DecodeLocale()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_DecodeLocale)1147- [`PyUnicode_DecodeLocaleAndSize()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_DecodeLocaleAndSize)1148- [`PyUnicode_DecodeMBCS()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_DecodeMBCS)1149- [`PyUnicode_DecodeMBCSStateful()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_DecodeMBCSStateful)1150- [`PyUnicode_DecodeRawUnicodeEscape()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_DecodeRawUnicodeEscape)1151- [`PyUnicode_DecodeUTF16()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_DecodeUTF16)1152- [`PyUnicode_DecodeUTF16Stateful()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_DecodeUTF16Stateful)1153- [`PyUnicode_DecodeUTF32()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_DecodeUTF32)1154- [`PyUnicode_DecodeUTF32Stateful()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_DecodeUTF32Stateful)1155- [`PyUnicode_DecodeUTF7()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_DecodeUTF7)1156- [`PyUnicode_DecodeUTF7Stateful()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_DecodeUTF7Stateful)1157- [`PyUnicode_DecodeUTF8()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_DecodeUTF8)1158- [`PyUnicode_DecodeUTF8Stateful()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_DecodeUTF8Stateful)1159- [`PyUnicode_DecodeUnicodeEscape()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_DecodeUnicodeEscape)1160- [`PyUnicode_EncodeCodePage()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_EncodeCodePage)1161- [`PyUnicode_EncodeFSDefault()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_EncodeFSDefault)1162- [`PyUnicode_EncodeLocale()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_EncodeLocale)1163- [`PyUnicode_Equal()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_Equal)1164- [`PyUnicode_EqualToUTF8()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_EqualToUTF8)1165- [`PyUnicode_EqualToUTF8AndSize()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_EqualToUTF8AndSize)1166- [`PyUnicode_FSConverter()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_FSConverter)1167- [`PyUnicode_FSDecoder()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_FSDecoder)1168- [`PyUnicode_Find()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_Find)1169- [`PyUnicode_FindChar()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_FindChar)1170- [`PyUnicode_Format()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_Format)1171- [`PyUnicode_FromEncodedObject()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_FromEncodedObject)1172- [`PyUnicode_FromFormat()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_FromFormat)1173- [`PyUnicode_FromFormatV()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_FromFormatV)1174- [`PyUnicode_FromObject()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_FromObject)1175- [`PyUnicode_FromOrdinal()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_FromOrdinal)1176- [`PyUnicode_FromString()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_FromString)1177- [`PyUnicode_FromStringAndSize()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_FromStringAndSize)1178- [`PyUnicode_FromWideChar()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_FromWideChar)1179- [`PyUnicode_GetDefaultEncoding()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_GetDefaultEncoding)1180- [`PyUnicode_GetLength()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_GetLength)1181- [`PyUnicode_InternFromString()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_InternFromString)1182- [`PyUnicode_InternInPlace()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_InternInPlace)1183- [`PyUnicode_IsIdentifier()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_IsIdentifier)1184- [`PyUnicode_Join()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_Join)1185- [`PyUnicode_Partition()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_Partition)1186- [`PyUnicode_RPartition()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_RPartition)1187- [`PyUnicode_RSplit()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_RSplit)1188- [`PyUnicode_ReadChar()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_ReadChar)1189- [`PyUnicode_Replace()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_Replace)1190- [`PyUnicode_Resize()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_Resize)1191- [`PyUnicode_RichCompare()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_RichCompare)1192- [`PyUnicode_Split()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_Split)1193- [`PyUnicode_Splitlines()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_Splitlines)1194- [`PyUnicode_Substring()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_Substring)1195- [`PyUnicode_Tailmatch()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_Tailmatch)1196- [`PyUnicode_Translate()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_Translate)1197- [`PyUnicode_Type`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_Type)1198- [`PyUnicode_WriteChar()`](https://python-all.ru/3.16/c-api/unicode.html#c.PyUnicode_WriteChar)1199- [`PyVarObject`](https://python-all.ru/3.16/c-api/structures.html#c.PyVarObject)1200- [`PyVarObject.ob_base`](https://python-all.ru/3.16/c-api/structures.html#c.PyVarObject.ob_base)1201- [`PyVarObject.ob_size`](https://python-all.ru/3.16/c-api/structures.html#c.PyVarObject.ob_size)1202- [`PyVectorcall_Call()`](https://python-all.ru/3.16/c-api/call.html#c.PyVectorcall_Call)1203- [`PyVectorcall_NARGS()`](https://python-all.ru/3.16/c-api/call.html#c.PyVectorcall_NARGS)1204- `PyWeakReference`1205- [`PyWeakref_GetRef()`](https://python-all.ru/3.16/c-api/weakref.html#c.PyWeakref_GetRef)1206- [`PyWeakref_NewProxy()`](https://python-all.ru/3.16/c-api/weakref.html#c.PyWeakref_NewProxy)1207- [`PyWeakref_NewRef()`](https://python-all.ru/3.16/c-api/weakref.html#c.PyWeakref_NewRef)1208- [`PyWrapperDescr_Type`](https://python-all.ru/3.16/c-api/descriptor.html#c.PyWrapperDescr_Type)1209- [`PyWrapper_New()`](https://python-all.ru/3.16/c-api/descriptor.html#c.PyWrapper_New)1210- [`PyZip_Type`](https://python-all.ru/3.16/c-api/iterator.html#c.PyZip_Type)1211- [`Py_ASNATIVEBYTES_ALLOW_INDEX`](https://python-all.ru/3.16/c-api/long.html#c.Py_ASNATIVEBYTES_ALLOW_INDEX)1212- [`Py_ASNATIVEBYTES_BIG_ENDIAN`](https://python-all.ru/3.16/c-api/long.html#c.Py_ASNATIVEBYTES_BIG_ENDIAN)1213- [`Py_ASNATIVEBYTES_DEFAULTS`](https://python-all.ru/3.16/c-api/long.html#c.Py_ASNATIVEBYTES_DEFAULTS)1214- [`Py_ASNATIVEBYTES_LITTLE_ENDIAN`](https://python-all.ru/3.16/c-api/long.html#c.Py_ASNATIVEBYTES_LITTLE_ENDIAN)1215- [`Py_ASNATIVEBYTES_NATIVE_ENDIAN`](https://python-all.ru/3.16/c-api/long.html#c.Py_ASNATIVEBYTES_NATIVE_ENDIAN)1216- [`Py_ASNATIVEBYTES_REJECT_NEGATIVE`](https://python-all.ru/3.16/c-api/long.html#c.Py_ASNATIVEBYTES_REJECT_NEGATIVE)1217- [`Py_ASNATIVEBYTES_UNSIGNED_BUFFER`](https://python-all.ru/3.16/c-api/long.html#c.Py_ASNATIVEBYTES_UNSIGNED_BUFFER)1218- [`Py_AUDIT_READ`](https://python-all.ru/3.16/c-api/structures.html#c.Py_AUDIT_READ)1219- [`Py_AddPendingCall()`](https://python-all.ru/3.16/c-api/threads.html#c.Py_AddPendingCall)1220- [`Py_AtExit()`](https://python-all.ru/3.16/c-api/sys.html#c.Py_AtExit)1221- [`Py_BEGIN_ALLOW_THREADS`](https://python-all.ru/3.16/c-api/threads.html#c.Py_BEGIN_ALLOW_THREADS)1222- [`Py_BEGIN_CRITICAL_SECTION`](https://python-all.ru/3.16/c-api/synchronization.html#c.Py_BEGIN_CRITICAL_SECTION)1223- [`Py_BEGIN_CRITICAL_SECTION2`](https://python-all.ru/3.16/c-api/synchronization.html#c.Py_BEGIN_CRITICAL_SECTION2)1224- [`Py_BLOCK_THREADS`](https://python-all.ru/3.16/c-api/threads.html#c.Py_BLOCK_THREADS)1225- [`Py_BuildValue()`](https://python-all.ru/3.16/c-api/arg.html#c.Py_BuildValue)1226- [`Py_BytesMain()`](https://python-all.ru/3.16/c-api/interp-lifecycle.html#c.Py_BytesMain)1227- [`Py_CompileString()`](https://python-all.ru/3.16/c-api/veryhigh.html#c.Py_CompileString)1228- [`Py_DecRef()`](https://python-all.ru/3.16/c-api/refcounting.html#c.Py_DecRef)1229- [`Py_DecodeLocale()`](https://python-all.ru/3.16/c-api/sys.html#c.Py_DecodeLocale)1230- [`Py_END_ALLOW_THREADS`](https://python-all.ru/3.16/c-api/threads.html#c.Py_END_ALLOW_THREADS)1231- [`Py_END_CRITICAL_SECTION`](https://python-all.ru/3.16/c-api/synchronization.html#c.Py_END_CRITICAL_SECTION)1232- [`Py_END_CRITICAL_SECTION2`](https://python-all.ru/3.16/c-api/synchronization.html#c.Py_END_CRITICAL_SECTION2)1233- [`Py_EncodeLocale()`](https://python-all.ru/3.16/c-api/sys.html#c.Py_EncodeLocale)1234- [`Py_EndInterpreter()`](https://python-all.ru/3.16/c-api/subinterpreters.html#c.Py_EndInterpreter)1235- [`Py_EnterRecursiveCall()`](https://python-all.ru/3.16/c-api/exceptions.html#c.Py_EnterRecursiveCall)1236- [`Py_Exit()`](https://python-all.ru/3.16/c-api/sys.html#c.Py_Exit)1237- [`Py_FatalError()`](https://python-all.ru/3.16/c-api/sys.html#c.Py_FatalError)1238- `Py_FileSystemDefaultEncodeErrors`1239- `Py_FileSystemDefaultEncoding`1240- [`Py_Finalize()`](https://python-all.ru/3.16/c-api/interp-lifecycle.html#c.Py_Finalize)1241- [`Py_FinalizeEx()`](https://python-all.ru/3.16/c-api/interp-lifecycle.html#c.Py_FinalizeEx)1242- [`Py_GenericAlias()`](https://python-all.ru/3.16/c-api/typehints.html#c.Py_GenericAlias)1243- [`Py_GenericAliasType`](https://python-all.ru/3.16/c-api/typehints.html#c.Py_GenericAliasType)1244- [`Py_GetBuildInfo()`](https://python-all.ru/3.16/c-api/interp-lifecycle.html#c.Py_GetBuildInfo)1245- [`Py_GetCompiler()`](https://python-all.ru/3.16/c-api/interp-lifecycle.html#c.Py_GetCompiler)1246- [`Py_GetConstant()`](https://python-all.ru/3.16/c-api/object.html#c.Py_GetConstant)1247- [`Py_GetConstantBorrowed()`](https://python-all.ru/3.16/c-api/object.html#c.Py_GetConstantBorrowed)1248- [`Py_GetCopyright()`](https://python-all.ru/3.16/c-api/interp-lifecycle.html#c.Py_GetCopyright)1249- [`Py_GetPlatform()`](https://python-all.ru/3.16/c-api/interp-lifecycle.html#c.Py_GetPlatform)1250- [`Py_GetRecursionLimit()`](https://python-all.ru/3.16/c-api/exceptions.html#c.Py_GetRecursionLimit)1251- [`Py_GetVersion()`](https://python-all.ru/3.16/c-api/interp-lifecycle.html#c.Py_GetVersion)1252- `Py_HasFileSystemDefaultEncoding`1253- [`Py_IS_TYPE()`](https://python-all.ru/3.16/c-api/structures.html#c.Py_IS_TYPE)1254- [`Py_IncRef()`](https://python-all.ru/3.16/c-api/refcounting.html#c.Py_IncRef)1255- [`Py_Initialize()`](https://python-all.ru/3.16/c-api/interp-lifecycle.html#c.Py_Initialize)1256- [`Py_InitializeEx()`](https://python-all.ru/3.16/c-api/interp-lifecycle.html#c.Py_InitializeEx)1257- [`Py_Is()`](https://python-all.ru/3.16/c-api/structures.html#c.Py_Is)1258- [`Py_IsFalse()`](https://python-all.ru/3.16/c-api/structures.html#c.Py_IsFalse)1259- [`Py_IsFinalizing()`](https://python-all.ru/3.16/c-api/interp-lifecycle.html#c.Py_IsFinalizing)1260- [`Py_IsInitialized()`](https://python-all.ru/3.16/c-api/interp-lifecycle.html#c.Py_IsInitialized)1261- [`Py_IsNone()`](https://python-all.ru/3.16/c-api/structures.html#c.Py_IsNone)1262- [`Py_IsTrue()`](https://python-all.ru/3.16/c-api/structures.html#c.Py_IsTrue)1263- [`Py_LeaveRecursiveCall()`](https://python-all.ru/3.16/c-api/exceptions.html#c.Py_LeaveRecursiveCall)1264- [`Py_Main()`](https://python-all.ru/3.16/c-api/interp-lifecycle.html#c.Py_Main)1265- [`Py_MakePendingCalls()`](https://python-all.ru/3.16/c-api/threads.html#c.Py_MakePendingCalls)1266- [`Py_NewInterpreter()`](https://python-all.ru/3.16/c-api/subinterpreters.html#c.Py_NewInterpreter)1267- [`Py_NewRef()`](https://python-all.ru/3.16/c-api/refcounting.html#c.Py_NewRef)1268- [`Py_PACK_FULL_VERSION()`](https://python-all.ru/3.16/c-api/apiabiversion.html#c.Py_PACK_FULL_VERSION)1269- [`Py_PACK_VERSION()`](https://python-all.ru/3.16/c-api/apiabiversion.html#c.Py_PACK_VERSION)1270- [`Py_READONLY`](https://python-all.ru/3.16/c-api/structures.html#c.Py_READONLY)1271- [`Py_REFCNT()`](https://python-all.ru/3.16/c-api/refcounting.html#c.Py_REFCNT)1272- [`Py_RELATIVE_OFFSET`](https://python-all.ru/3.16/c-api/structures.html#c.Py_RELATIVE_OFFSET)1273- [`Py_ReprEnter()`](https://python-all.ru/3.16/c-api/exceptions.html#c.Py_ReprEnter)1274- [`Py_ReprLeave()`](https://python-all.ru/3.16/c-api/exceptions.html#c.Py_ReprLeave)1275- [`Py_SET_SIZE()`](https://python-all.ru/3.16/c-api/structures.html#c.Py_SET_SIZE)1276- [`Py_SIZE()`](https://python-all.ru/3.16/c-api/structures.html#c.Py_SIZE)1277- [`Py_SetProgramName()`](https://python-all.ru/3.16/c-api/interp-lifecycle.html#c.Py_SetProgramName)1278- [`Py_SetPythonHome()`](https://python-all.ru/3.16/c-api/interp-lifecycle.html#c.Py_SetPythonHome)1279- [`Py_SetRecursionLimit()`](https://python-all.ru/3.16/c-api/exceptions.html#c.Py_SetRecursionLimit)1280- [`Py_TPFLAGS_BASETYPE`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_TPFLAGS_BASETYPE)1281- [`Py_TPFLAGS_DEFAULT`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_TPFLAGS_DEFAULT)1282- [`Py_TPFLAGS_HAVE_GC`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_TPFLAGS_HAVE_GC)1283- [`Py_TPFLAGS_HAVE_VECTORCALL`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_TPFLAGS_HAVE_VECTORCALL)1284- [`Py_TPFLAGS_ITEMS_AT_END`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_TPFLAGS_ITEMS_AT_END)1285- [`Py_TPFLAGS_METHOD_DESCRIPTOR`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_TPFLAGS_METHOD_DESCRIPTOR)1286- [`Py_TP_USE_SPEC`](https://python-all.ru/3.16/c-api/type.html#c.Py_TP_USE_SPEC)1287- [`Py_TYPE()`](https://python-all.ru/3.16/c-api/structures.html#c.Py_TYPE)1288- [`Py_T_BOOL`](https://python-all.ru/3.16/c-api/structures.html#c.Py_T_BOOL)1289- [`Py_T_BYTE`](https://python-all.ru/3.16/c-api/structures.html#c.Py_T_BYTE)1290- [`Py_T_CHAR`](https://python-all.ru/3.16/c-api/structures.html#c.Py_T_CHAR)1291- [`Py_T_DOUBLE`](https://python-all.ru/3.16/c-api/structures.html#c.Py_T_DOUBLE)1292- [`Py_T_FLOAT`](https://python-all.ru/3.16/c-api/structures.html#c.Py_T_FLOAT)1293- [`Py_T_INT`](https://python-all.ru/3.16/c-api/structures.html#c.Py_T_INT)1294- [`Py_T_LONG`](https://python-all.ru/3.16/c-api/structures.html#c.Py_T_LONG)1295- [`Py_T_LONGLONG`](https://python-all.ru/3.16/c-api/structures.html#c.Py_T_LONGLONG)1296- [`Py_T_OBJECT_EX`](https://python-all.ru/3.16/c-api/structures.html#c.Py_T_OBJECT_EX)1297- [`Py_T_PYSSIZET`](https://python-all.ru/3.16/c-api/structures.html#c.Py_T_PYSSIZET)1298- [`Py_T_SHORT`](https://python-all.ru/3.16/c-api/structures.html#c.Py_T_SHORT)1299- [`Py_T_STRING`](https://python-all.ru/3.16/c-api/structures.html#c.Py_T_STRING)1300- [`Py_T_STRING_INPLACE`](https://python-all.ru/3.16/c-api/structures.html#c.Py_T_STRING_INPLACE)1301- [`Py_T_UBYTE`](https://python-all.ru/3.16/c-api/structures.html#c.Py_T_UBYTE)1302- [`Py_T_UINT`](https://python-all.ru/3.16/c-api/structures.html#c.Py_T_UINT)1303- [`Py_T_ULONG`](https://python-all.ru/3.16/c-api/structures.html#c.Py_T_ULONG)1304- [`Py_T_ULONGLONG`](https://python-all.ru/3.16/c-api/structures.html#c.Py_T_ULONGLONG)1305- [`Py_T_USHORT`](https://python-all.ru/3.16/c-api/structures.html#c.Py_T_USHORT)1306- [`Py_UCS4`](https://python-all.ru/3.16/c-api/unicode.html#c.Py_UCS4)1307- [`Py_UNBLOCK_THREADS`](https://python-all.ru/3.16/c-api/threads.html#c.Py_UNBLOCK_THREADS)1308- `Py_UTF8Mode`1309- [`Py_VaBuildValue()`](https://python-all.ru/3.16/c-api/arg.html#c.Py_VaBuildValue)1310- [`Py_Version`](https://python-all.ru/3.16/c-api/apiabiversion.html#c.Py_Version)1311- [`Py_XNewRef()`](https://python-all.ru/3.16/c-api/refcounting.html#c.Py_XNewRef)1312- [`Py_am_aiter`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_am_aiter)1313- [`Py_am_anext`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_am_anext)1314- [`Py_am_await`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_am_await)1315- [`Py_am_send`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_am_send)1316- [`Py_bf_getbuffer`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_bf_getbuffer)1317- [`Py_bf_releasebuffer`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_bf_releasebuffer)1318- [`Py_buffer`](https://python-all.ru/3.16/c-api/buffer.html#c.Py_buffer)1319- `Py_intptr_t`1320- [`Py_mod_abi`](https://python-all.ru/3.16/c-api/module.html#c.Py_mod_abi)1321- [`Py_mod_create`](https://python-all.ru/3.16/c-api/module.html#c.Py_mod_create)1322- [`Py_mod_doc`](https://python-all.ru/3.16/c-api/module.html#c.Py_mod_doc)1323- [`Py_mod_exec`](https://python-all.ru/3.16/c-api/module.html#c.Py_mod_exec)1324- [`Py_mod_gil`](https://python-all.ru/3.16/c-api/module.html#c.Py_mod_gil)1325- [`Py_mod_methods`](https://python-all.ru/3.16/c-api/module.html#c.Py_mod_methods)1326- [`Py_mod_multiple_interpreters`](https://python-all.ru/3.16/c-api/module.html#c.Py_mod_multiple_interpreters)1327- [`Py_mod_name`](https://python-all.ru/3.16/c-api/module.html#c.Py_mod_name)1328- [`Py_mod_slots`](https://python-all.ru/3.16/c-api/module.html#c.Py_mod_slots)1329- [`Py_mod_state_clear`](https://python-all.ru/3.16/c-api/module.html#c.Py_mod_state_clear)1330- [`Py_mod_state_free`](https://python-all.ru/3.16/c-api/module.html#c.Py_mod_state_free)1331- [`Py_mod_state_size`](https://python-all.ru/3.16/c-api/module.html#c.Py_mod_state_size)1332- [`Py_mod_state_traverse`](https://python-all.ru/3.16/c-api/module.html#c.Py_mod_state_traverse)1333- [`Py_mod_token`](https://python-all.ru/3.16/c-api/module.html#c.Py_mod_token)1334- [`Py_mp_ass_subscript`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_mp_ass_subscript)1335- [`Py_mp_length`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_mp_length)1336- [`Py_mp_subscript`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_mp_subscript)1337- [`Py_nb_absolute`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_absolute)1338- [`Py_nb_add`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_add)1339- [`Py_nb_and`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_and)1340- [`Py_nb_bool`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_bool)1341- [`Py_nb_divmod`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_divmod)1342- [`Py_nb_float`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_float)1343- [`Py_nb_floor_divide`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_floor_divide)1344- [`Py_nb_index`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_index)1345- [`Py_nb_inplace_add`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_inplace_add)1346- [`Py_nb_inplace_and`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_inplace_and)1347- [`Py_nb_inplace_floor_divide`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_inplace_floor_divide)1348- [`Py_nb_inplace_lshift`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_inplace_lshift)1349- [`Py_nb_inplace_matrix_multiply`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_inplace_matrix_multiply)1350- [`Py_nb_inplace_multiply`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_inplace_multiply)1351- [`Py_nb_inplace_or`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_inplace_or)1352- [`Py_nb_inplace_power`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_inplace_power)1353- [`Py_nb_inplace_remainder`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_inplace_remainder)1354- [`Py_nb_inplace_rshift`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_inplace_rshift)1355- [`Py_nb_inplace_subtract`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_inplace_subtract)1356- [`Py_nb_inplace_true_divide`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_inplace_true_divide)1357- [`Py_nb_inplace_xor`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_inplace_xor)1358- [`Py_nb_int`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_int)1359- [`Py_nb_invert`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_invert)1360- [`Py_nb_lshift`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_lshift)1361- [`Py_nb_matrix_multiply`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_matrix_multiply)1362- [`Py_nb_multiply`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_multiply)1363- [`Py_nb_negative`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_negative)1364- [`Py_nb_or`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_or)1365- [`Py_nb_positive`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_positive)1366- [`Py_nb_power`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_power)1367- [`Py_nb_remainder`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_remainder)1368- [`Py_nb_rshift`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_rshift)1369- [`Py_nb_subtract`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_subtract)1370- [`Py_nb_true_divide`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_true_divide)1371- [`Py_nb_xor`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_nb_xor)1372- [`Py_slot_end`](https://python-all.ru/3.16/c-api/slots.html#c.Py_slot_end)1373- [`Py_slot_invalid`](https://python-all.ru/3.16/c-api/slots.html#c.Py_slot_invalid)1374- [`Py_slot_subslots`](https://python-all.ru/3.16/c-api/slots.html#c.Py_slot_subslots)1375- [`Py_sq_ass_item`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_sq_ass_item)1376- [`Py_sq_concat`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_sq_concat)1377- [`Py_sq_contains`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_sq_contains)1378- [`Py_sq_inplace_concat`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_sq_inplace_concat)1379- [`Py_sq_inplace_repeat`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_sq_inplace_repeat)1380- [`Py_sq_item`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_sq_item)1381- [`Py_sq_length`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_sq_length)1382- [`Py_sq_repeat`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_sq_repeat)1383- [`Py_ssize_t`](https://python-all.ru/3.16/c-api/intro.html#c.Py_ssize_t)1384- [`Py_tp_alloc`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_tp_alloc)1385- [`Py_tp_base`](https://python-all.ru/3.16/c-api/type.html#c.Py_tp_base)1386- [`Py_tp_bases`](https://python-all.ru/3.16/c-api/type.html#c.Py_tp_bases)1387- [`Py_tp_basicsize`](https://python-all.ru/3.16/c-api/type.html#c.Py_tp_basicsize)1388- [`Py_tp_call`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_tp_call)1389- [`Py_tp_clear`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_tp_clear)1390- [`Py_tp_dealloc`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_tp_dealloc)1391- [`Py_tp_del`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_tp_del)1392- [`Py_tp_descr_get`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_tp_descr_get)1393- [`Py_tp_descr_set`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_tp_descr_set)1394- [`Py_tp_doc`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_tp_doc)1395- [`Py_tp_extra_basicsize`](https://python-all.ru/3.16/c-api/type.html#c.Py_tp_extra_basicsize)1396- [`Py_tp_finalize`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_tp_finalize)1397- [`Py_tp_flags`](https://python-all.ru/3.16/c-api/type.html#c.Py_tp_flags)1398- [`Py_tp_free`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_tp_free)1399- [`Py_tp_getattr`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_tp_getattr)1400- [`Py_tp_getattro`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_tp_getattro)1401- [`Py_tp_getset`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_tp_getset)1402- [`Py_tp_hash`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_tp_hash)1403- [`Py_tp_init`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_tp_init)1404- [`Py_tp_is_gc`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_tp_is_gc)1405- [`Py_tp_itemsize`](https://python-all.ru/3.16/c-api/type.html#c.Py_tp_itemsize)1406- [`Py_tp_iter`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_tp_iter)1407- [`Py_tp_iternext`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_tp_iternext)1408- [`Py_tp_members`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_tp_members)1409- [`Py_tp_metaclass`](https://python-all.ru/3.16/c-api/type.html#c.Py_tp_metaclass)1410- [`Py_tp_methods`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_tp_methods)1411- [`Py_tp_module`](https://python-all.ru/3.16/c-api/type.html#c.Py_tp_module)1412- [`Py_tp_name`](https://python-all.ru/3.16/c-api/type.html#c.Py_tp_name)1413- [`Py_tp_new`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_tp_new)1414- [`Py_tp_repr`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_tp_repr)1415- [`Py_tp_richcompare`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_tp_richcompare)1416- [`Py_tp_setattr`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_tp_setattr)1417- [`Py_tp_setattro`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_tp_setattro)1418- [`Py_tp_slots`](https://python-all.ru/3.16/c-api/type.html#c.Py_tp_slots)1419- [`Py_tp_str`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_tp_str)1420- [`Py_tp_token`](https://python-all.ru/3.16/c-api/type.html#c.Py_tp_token)1421- [`Py_tp_traverse`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_tp_traverse)1422- [`Py_tp_vectorcall`](https://python-all.ru/3.16/c-api/typeobj.html#c.Py_tp_vectorcall)1423- `Py_uintptr_t`1424- [`allocfunc`](https://python-all.ru/3.16/c-api/typeobj.html#c.allocfunc)1425- [`binaryfunc`](https://python-all.ru/3.16/c-api/typeobj.html#c.binaryfunc)1426- [`descrgetfunc`](https://python-all.ru/3.16/c-api/typeobj.html#c.descrgetfunc)1427- [`descrsetfunc`](https://python-all.ru/3.16/c-api/typeobj.html#c.descrsetfunc)1428- [`destructor`](https://python-all.ru/3.16/c-api/typeobj.html#c.destructor)1429- [`getattrfunc`](https://python-all.ru/3.16/c-api/typeobj.html#c.getattrfunc)1430- [`getattrofunc`](https://python-all.ru/3.16/c-api/typeobj.html#c.getattrofunc)1431- [`getbufferproc`](https://python-all.ru/3.16/c-api/typeobj.html#c.getbufferproc)1432- [`getiterfunc`](https://python-all.ru/3.16/c-api/typeobj.html#c.getiterfunc)1433- [`getter`](https://python-all.ru/3.16/c-api/structures.html#c.getter)1434- [`hashfunc`](https://python-all.ru/3.16/c-api/typeobj.html#c.hashfunc)1435- [`initproc`](https://python-all.ru/3.16/c-api/typeobj.html#c.initproc)1436- [`inquiry`](https://python-all.ru/3.16/c-api/gcsupport.html#c.inquiry)1437- [`iternextfunc`](https://python-all.ru/3.16/c-api/typeobj.html#c.iternextfunc)1438- [`lenfunc`](https://python-all.ru/3.16/c-api/typeobj.html#c.lenfunc)1439- [`newfunc`](https://python-all.ru/3.16/c-api/typeobj.html#c.newfunc)1440- [`objobjargproc`](https://python-all.ru/3.16/c-api/typeobj.html#c.objobjargproc)1441- [`objobjproc`](https://python-all.ru/3.16/c-api/typeobj.html#c.objobjproc)1442- [`releasebufferproc`](https://python-all.ru/3.16/c-api/typeobj.html#c.releasebufferproc)1443- [`reprfunc`](https://python-all.ru/3.16/c-api/typeobj.html#c.reprfunc)1444- [`richcmpfunc`](https://python-all.ru/3.16/c-api/typeobj.html#c.richcmpfunc)1445- [`setattrfunc`](https://python-all.ru/3.16/c-api/typeobj.html#c.setattrfunc)1446- [`setattrofunc`](https://python-all.ru/3.16/c-api/typeobj.html#c.setattrofunc)1447- [`setter`](https://python-all.ru/3.16/c-api/structures.html#c.setter)1448- [`ssizeargfunc`](https://python-all.ru/3.16/c-api/typeobj.html#c.ssizeargfunc)1449- [`ssizeobjargproc`](https://python-all.ru/3.16/c-api/typeobj.html#c.ssizeobjargproc)1450- `ssizessizeargfunc`1451- `ssizessizeobjargproc`1452- `symtable`1453- [`ternaryfunc`](https://python-all.ru/3.16/c-api/typeobj.html#c.ternaryfunc)1454- [`traverseproc`](https://python-all.ru/3.16/c-api/gcsupport.html#c.traverseproc)1455- [`unaryfunc`](https://python-all.ru/3.16/c-api/typeobj.html#c.unaryfunc)1456- [`vectorcallfunc`](https://python-all.ru/3.16/c-api/call.html#c.vectorcallfunc)1457- [`visitproc`](https://python-all.ru/3.16/c-api/gcsupport.html#c.visitproc)1458