mirror of
https://github.com/python/cpython.git
synced 2024-11-24 02:15:30 +08:00
Make sure that -t and -tt also work on strings passed to compile().
This commit is contained in:
parent
b55f9ff68c
commit
89ce454498
@ -68,6 +68,13 @@ PyParser_ParseString(s, g, start, err_ret)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
if (Py_TabcheckFlag || Py_VerboseFlag) {
|
||||
tok->filename = "<string>";
|
||||
tok->altwarning = (tok->filename != NULL);
|
||||
if (Py_TabcheckFlag >= 2)
|
||||
tok->alterror++;
|
||||
}
|
||||
|
||||
return parsetok(tok, g, start, err_ret);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user