意思就是 object reference count 缩写,即援用计数

typedef struct _object {    _PyObject_HEAD_EXTRA    Py_ssize_t ob_refcnt;    PyTypeObject *ob_type;} PyObject;