文件对象 文件对象 These APIs are a minimal emulation of the Python 2 C API for built-in file objects, which used to rely on the buffered I/O (FILE*) support from the C standard library....
字典对象 字典对象 type PyDictObject 这个 PyObject 的子类型代表一个Python字典对象。 PyTypeObject PyDict_Type Part of the Stable ABI . Python字典类型表示为 PyTypeObject 的实例。这与Python层面的 dict 是相同的对象。...
列表对象 列表对象 type PyListObject 这个C类型 PyObject 的子类型代表一个Python列表对象。 PyTypeObject PyList_Type Part of the Stable ABI . 这是个属于 PyTypeObject 的代表Python列表类型的实例。在Python层面和类型 list...
元组对象 结构序列对象 元组对象 type PyTupleObject 这个 PyObject 的子类型代表一个 Python 的元组对象。 PyTypeObject PyTuple_Type Part of the Stable ABI . PyTypeObject 的实例代表一个 Python 元组类型,这与 Python ...