Logo

Previous topic上一个主题

Memory Management

Next topic下一个主题

Allocating Objects on the Heap

Navigation导航

  • index索引
  • modules模块 |
  • next下一主题 |
  • previous上一主题 |
  • python logo
  • Python »
  • 3.10.4 Documentation文档 »
  • Python/C API Reference Manual »
  • Object Implementation Support
  • |

Object Implementation Support¶

This chapter describes the functions, types, and macros used when defining new object types.

  • Allocating Objects on the Heap
  • Common Object Structures
    • Base object types and macros
    • Implementing functions and methods
    • Accessing attributes of extension types
  • Type Objects
    • Quick Reference
      • “tp slots”
      • sub-slots
      • slot typedefs
    • PyTypeObject Definition
    • PyObject Slots
    • PyVarObject Slots
    • PyTypeObject Slots
    • Static Types
    • Heap Types
  • Number Object Structures
  • Mapping Object Structures
  • Sequence Object Structures
  • Buffer Object Structures
  • Async Object Structures
  • Slot Type typedefs
  • Examples
  • Supporting Cyclic Garbage Collection
    • Controlling the Garbage Collector State

Previous topic上一个主题

Memory Management

Next topic下一个主题

Allocating Objects on the Heap