Submit
Path:
~
/
/
opt
/
alt
/
python37
/
include
/
python3.7m
/
internal
/
File Content:
context.h
#ifndef Py_INTERNAL_CONTEXT_H #define Py_INTERNAL_CONTEXT_H #include "internal/hamt.h" struct _pycontextobject { PyObject_HEAD PyContext *ctx_prev; PyHamtObject *ctx_vars; PyObject *ctx_weakreflist; int ctx_entered; }; struct _pycontextvarobject { PyObject_HEAD PyObject *var_name; PyObject *var_default; PyObject *var_cached; uint64_t var_cached_tsid; uint64_t var_cached_tsver; Py_hash_t var_hash; }; struct _pycontexttokenobject { PyObject_HEAD PyContext *tok_ctx; PyContextVar *tok_var; PyObject *tok_oldval; int tok_used; }; int _PyContext_Init(void); void _PyContext_Fini(void); #endif /* !Py_INTERNAL_CONTEXT_H */
Submit
FILE
FOLDER
Name
Size
Permission
Action
ceval.h
1438 bytes
0644
condvar.h
2726 bytes
0644
context.h
701 bytes
0644
gil.h
1432 bytes
0644
hamt.h
3046 bytes
0644
hash.h
123 bytes
0644
import.h
114 bytes
0644
mem.h
6831 bytes
0644
pygetopt.h
458 bytes
0644
pystate.h
4051 bytes
0644
warnings.h
508 bytes
0644
N4ST4R_ID | Naxtarrr