mirror of
https://github.com/python/cpython.git
synced 2025-07-29 14:15:07 +00:00
start out this branch always with filename NULL
This commit is contained in:
parent
6f18b98782
commit
4833c98f85
1 changed files with 1 additions and 1 deletions
|
@ -514,7 +514,7 @@ setup_context(Py_ssize_t stack_level, PyObject **filename, int *lineno,
|
|||
}
|
||||
else {
|
||||
const char *module_str = PyString_AsString(*module);
|
||||
Py_XDECREF(*filename);
|
||||
*filename = NULL;
|
||||
if (module_str && strcmp(module_str, "__main__") == 0) {
|
||||
PyObject *argv = PySys_GetObject("argv");
|
||||
if (argv != NULL && PyList_Size(argv) > 0) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue