Lines Matching refs:xoptions
2214 status = PyWideStringList_Append(&config->xoptions, entry->value);
2324 PyObject *xoptions = _PySys_GetAttr(tstate, &_Py_ID(_xoptions));
2325 if (xoptions == NULL || !PyDict_Check(xoptions)) {
2326 /* PEP432 TODO: we can reach this if xoptions is NULL in the main
2328 * the `xoptions` reference in the main interpreter config as well.
2336 xoptions = PyDict_New();
2337 if (xoptions == NULL) {
2340 if (sys_set_object(tstate->interp, &_Py_ID(_xoptions), xoptions)) {
2341 Py_DECREF(xoptions);
2344 Py_DECREF(xoptions);
2346 return xoptions;
3049 Py_ssize_t nxoption = config->xoptions.length;
3050 wchar_t * const * xoptions = config->xoptions.items;
3057 const wchar_t *option = xoptions[i];