Update pocketpy.h

This commit is contained in:
blueloveTH 2026-02-27 18:11:38 +08:00
parent 6dd3a6dbb3
commit fe56ceb82e

View File

@ -37,6 +37,11 @@ typedef struct py_TValue {
union {
int64_t _i64;
double _f64;
bool _bool;
py_CFunction _cfunc;
void* _obj;
void* _ptr;
char _chars[16];
};
} py_TValue;