advanced-python-homework-2023/time_execution/pypy3.9-v7.3.13-linux64/include/pypy3.9/setobject.h

20 lines
303 B
C
Raw Normal View History

2023-10-12 17:14:36 +03:00
/* set object interface */
#ifndef Py_SETOBJECT_H
#define Py_SETOBJECT_H
#ifdef __cplusplus
extern "C" {
#endif
typedef struct {
PyObject_HEAD
PyObject *_tmplist; /* a private place to put values during _PySet_Next */
} PySetObject;
#ifdef __cplusplus
}
#endif
#endif /* !Py_SETOBJECT_H */