Lines Matching refs:startup
394 PyObject *startup = NULL;
400 startup = PyUnicode_FromWideChar(env, wcslen(env));
401 if (startup == NULL) {
409 startup = PyUnicode_DecodeFSDefault(env);
410 if (startup == NULL) {
414 if (PySys_Audit("cpython.run_startup", "O", startup) < 0) {
418 FILE *fp = _Py_fopen_obj(startup, "r");
425 PyErr_SetFromErrnoWithFilenameObjects(PyExc_OSError, startup, NULL);
430 (void) _PyRun_SimpleFileObject(fp, startup, 0, &cf);
436 Py_XDECREF(startup);