#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 */
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| ceval.h | File | 1.4 KB | 0644 |
|
| condvar.h | File | 2.66 KB | 0644 |
|
| context.h | File | 701 B | 0644 |
|
| gil.h | File | 1.4 KB | 0644 |
|
| hamt.h | File | 3.53 KB | 0644 |
|
| hash.h | File | 123 B | 0644 |
|
| import.h | File | 114 B | 0644 |
|
| mem.h | File | 6.67 KB | 0644 |
|
| pycore_long.h | File | 1.51 KB | 0644 |
|
| pygetopt.h | File | 458 B | 0644 |
|
| pystate.h | File | 4.21 KB | 0644 |
|
| warnings.h | File | 508 B | 0644 |
|