Commit 4833c98f authored by Benjamin Peterson's avatar Benjamin Peterson

start out this branch always with filename NULL

parent 6f18b987
...@@ -514,7 +514,7 @@ setup_context(Py_ssize_t stack_level, PyObject **filename, int *lineno, ...@@ -514,7 +514,7 @@ setup_context(Py_ssize_t stack_level, PyObject **filename, int *lineno,
} }
else { else {
const char *module_str = PyString_AsString(*module); const char *module_str = PyString_AsString(*module);
Py_XDECREF(*filename); *filename = NULL;
if (module_str && strcmp(module_str, "__main__") == 0) { if (module_str && strcmp(module_str, "__main__") == 0) {
PyObject *argv = PySys_GetObject("argv"); PyObject *argv = PySys_GetObject("argv");
if (argv != NULL && PyList_Size(argv) > 0) { if (argv != NULL && PyList_Size(argv) > 0) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment