diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-08-07 16:34:25 +0000 |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-08-07 16:34:25 +0000 |
commit | 00df2aefe0be842edc4cd860fc0351af403f2157 (patch) | |
tree | 974d94af0da032e2c6a94a472cd149d661f4da48 /Modules/main.c | |
parent | 3c415ace7412af315eefd3c21f612efe33b8a51b (diff) | |
download | cpython-00df2aefe0be842edc4cd860fc0351af403f2157.tar.gz |
Issue #9425: Create run_file() subfunction
* Call Py_MakePendingCalls() before converting the filename from
wchar_t* to char*
* Use PyUnicode_AsUTF8String() instead of _PyUnicode_AsString()
Diffstat (limited to 'Modules/main.c')
-rw-r--r-- | Modules/main.c | 60 |
1 files changed, 36 insertions, 24 deletions
diff --git a/Modules/main.c b/Modules/main.c index bebaab556c..7929b05a6f 100644 --- a/Modules/main.c +++ b/Modules/main.c @@ -275,6 +275,40 @@ error: return 1; } +static int +run_file(FILE *fp, const wchar_t *filename, PyCompilerFlags *p_cf) +{ + PyObject *unicode, *bytes = NULL; + char *filename_str; + int run; + + /* call pending calls like signal handlers (SIGINT) */ + if (Py_MakePendingCalls() == -1) { + PyErr_Print(); + return 1; + } + + if (filename) { + unicode = PyUnicode_FromWideChar(filename, wcslen(filename)); + if (unicode != NULL) { + bytes = PyUnicode_AsUTF8String(unicode); + Py_DECREF(unicode); + } + if (bytes != NULL) + filename_str = PyBytes_AsString(bytes); + else { + PyErr_Clear(); + filename_str = "<decoding error>"; + } + } + else + filename_str = "<stdin>"; + + run = PyRun_AnyFileExFlags(fp, filename_str, filename != NULL, p_cf); + Py_XDECREF(bytes); + return run != 0; +} + /* Main program */ @@ -644,30 +678,8 @@ Py_Main(int argc, wchar_t **argv) } } - if (sts==-1) { - PyObject *filenameObj = NULL; - char *p_cfilename = "<stdin>"; - if (filename) { - filenameObj = PyUnicode_FromWideChar( - filename, wcslen(filename)); - if (filenameObj != NULL) - p_cfilename = _PyUnicode_AsString(filenameObj); - else - p_cfilename = "<decoding error>"; - } - /* call pending calls like signal handlers (SIGINT) */ - if (Py_MakePendingCalls() == -1) { - PyErr_Print(); - sts = 1; - } else { - sts = PyRun_AnyFileExFlags( - fp, - p_cfilename, - filename != NULL, &cf) != 0; - } - Py_XDECREF(filenameObj); - } - + if (sts == -1) + sts = run_file(fp, filename, &cf); } /* Check this environment variable at the end, to give programs the |