Lines Matching defs:value
570 Return the value for `key` if `key` has the value in the context object.
604 The result is returned as a list of 2-tuples (variable, value).
970 Return a value for the context variable for the current context.
972 If there is no value for the variable in the current context, the method will:
973 * return the value of the default argument of the method, if provided; or
974 * return the default value for the context variable, if it was created
1004 value: object
1007 Call to set a new value for the context variable in the current context.
1009 The required value argument is the new value for the context variable.
1012 value via the `ContextVar.reset()` method.
1016 _contextvars_ContextVar_set(PyContextVar *self, PyObject *value)
1019 return PyContextVar_Set((PyObject *)self, value);
1029 The variable is reset to the value it had before the `ContextVar.set()` that