/
githubmirror
/
cpython
Обзор
Документация
Войти
/
githubmirror
/
cpython
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
3.9
Doc/c-api/abstract.rst
27 строк
723 B
Jeroen Demeyer
bpo-36974: expand call protocol documentation (GH-13844)
12 ноя 2019, 16:08
12 ноя 2019, 16:08
9a13a38
Код
Авторство
О чём код?
.. highlight:: c .. _abstract: ********************** Abstract Objects Layer ********************** The functions in this chapter interact with Python objects regardless of their type, or with wide classes of object types (e.g. all numerical types, or all sequence types). When used on object types for which they do not apply, they will raise a Python exception. It is not possible to use these functions on objects that are not properly initialized, such as a list object that has been created by :c:func:`PyList_New`, but whose items have not been set to some non-\ ``NULL`` value yet. .. toctree:: object.rst call.rst number.rst sequence.rst mapping.rst iter.rst buffer.rst objbuffer.rst