mirror of
https://github.com/python/cpython.git
synced 2025-10-22 17:33:55 +00:00
11 lines
263 B
C
11 lines
263 B
C
![]() |
|
||
|
#define INTRINSIC_PRINT 1
|
||
|
#define INTRINSIC_IMPORT_STAR 2
|
||
|
#define INTRINSIC_STOPITERATION_ERROR 3
|
||
|
|
||
|
#define MAX_INTRINSIC_1 3
|
||
|
|
||
|
typedef PyObject *(*instrinsic_func1)(PyThreadState* tstate, PyObject *value);
|
||
|
|
||
|
extern instrinsic_func1 _PyIntrinsics_UnaryFunctions[];
|