Home
last modified time | relevance | path

Searched refs:PyDecContextObject (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython3/Modules/_decimal/
D_decimal.c87 } PyDecContextObject; typedef
109 #define CTX(v) (&((PyDecContextObject *)v)->ctx)
110 #define CtxCaps(v) (((PyDecContextObject *)v)->capitals)
132 static PyDecContextObject *cached_context = NULL;
1122 retval = ((PyDecContextObject *)self)->traps; in context_getattr()
1127 retval = ((PyDecContextObject *)self)->flags; in context_getattr()
1183 PyDecContextObject *self = NULL; in context_new()
1187 self = PyObject_New(PyDecContextObject, &PyDecContext_Type); in context_new()
1190 self = (PyDecContextObject *)type->tp_alloc(type, 0); in context_new()
1228 context_dealloc(PyDecContextObject *self) in context_dealloc()
[all …]