카테고리 없음
CPython - PyObject
Jueuunn7
2025. 7. 1. 16:08
PyObject는 파이썬에 모든 객체 가장 위에 있는 최상위 C 구조체 입니다.
PyObject는 모든 객체를 추상화한 기본 구조입니다.
typedef struct _object {
Py_ssize_t ob_refcnt;
struct _typeobject *ob_type;
} PyObject;
PyObject는 레퍼런스 카운트인 ob_refcnt와 오브젝트 타입인 ob_type의 포인터를 갖습니다.
_typeobject는 타입의 메타정보를 담는 구조체입니다.