facf0c92e0
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
28 lines
723 B
ReStructuredText
28 lines
723 B
ReStructuredText
.. 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
|