Lines Matching refs:result
134 " default module search path. The result is sys.path.\n"
906 /* Decode str using Py_DecodeLocale() and set the result into *config_str.
1158 config_dict_get_int(PyObject *dict, const char *name, int *result)
1174 *result = value;
1180 config_dict_get_ulong(PyObject *dict, const char *name, unsigned long *result)
1196 *result = value;
1203 wchar_t **result)
1211 status = PyConfig_SetString(config, result, NULL);
1222 status = PyConfig_SetString(config, result, wstr);
1235 PyWideStringList *result)
1271 if (_PyWideStringList_Copy(result, &wstrlist) < 0) {
1593 config_wstr_to_int(const wchar_t *wstr, int *result)
1605 *result = (int)value;
2985 PyObject *result = NULL;
2988 result = PyDict_New();
2989 if (result == NULL) {
2993 /* global result */
2998 if (PyDict_SetItemString(result, "global_config", dict) < 0) {
3010 if (PyDict_SetItemString(result, "pre_config", dict) < 0) {
3021 if (PyDict_SetItemString(result, "config", dict) < 0) {
3026 return result;
3029 Py_XDECREF(result);