You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
715 B

16 years ago
  1. .. highlightlang:: c
  2. .. _abstract:
  3. **********************
  4. Abstract Objects Layer
  5. **********************
  6. The functions in this chapter interact with Python objects regardless of their
  7. type, or with wide classes of object types (e.g. all numerical types, or all
  8. sequence types). When used on object types for which they do not apply, they
  9. will raise a Python exception.
  10. It is not possible to use these functions on objects that are not properly
  11. initialized, such as a list object that has been created by :c:func:`PyList_New`,
  12. but whose items have not been set to some non-\ ``NULL`` value yet.
  13. .. toctree::
  14. object.rst
  15. number.rst
  16. sequence.rst
  17. mapping.rst
  18. iter.rst
  19. buffer.rst
  20. objbuffer.rst