Lines Matching defs:flags
1559 flags as new_val: int
1562 Set the flags used by the interpreter for dlopen calls.
1586 Return the current value of the flags that are used for dlopen calls.
2493 getdlopenflags() -- returns flags to be used for dlopen() calls\n\
2499 setdlopenflags() -- set the flags to be used for dlopen() calls\n\
2509 "sys.flags\n\
2538 "sys.flags", /* name */
2545 set_flags_from_config(PyInterpreterState *interp, PyObject *flags)
2550 // _PySys_UpdateConfig() modifies sys.flags in-place:
2559 Py_XDECREF(PyStructSequence_GET_ITEM(flags, pos)); \
2560 PyStructSequence_SET_ITEM(flags, pos, value); \
2592 PyObject *flags = PyStructSequence_New(&FlagsType);
2593 if (flags == NULL) {
2597 if (set_flags_from_config(interp, flags) < 0) {
2598 Py_DECREF(flags);
2601 return flags;
2948 // sys.flags: updated in-place later by _PySys_UpdateConfig()
2955 SET_SYS("flags", make_flags(tstate->interp));
3125 // sys.flags
3126 PyObject *flags = _PySys_GetObject(interp, "flags"); // borrowed ref
3127 if (flags == NULL) {
3130 if (set_flags_from_config(interp, flags) < 0) {