diff options
| author | Guido van Rossum <guido@python.org> | 1998-04-10 19:35:06 +0000 |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 1998-04-10 19:35:06 +0000 |
| commit | 6135df6626dd49b4dc4e1b570e0c9d1339fbf462 (patch) | |
| tree | 2e2fb7092a0b2149035e04e1364911b711aaac5e /Parser | |
| parent | c09520078329d5e172359017c7d772eff6437f7b (diff) | |
| download | cpython-git-6135df6626dd49b4dc4e1b570e0c9d1339fbf462.tar.gz | |
Declare and use Py_TabcheckFlag here.
Diffstat (limited to 'Parser')
| -rw-r--r-- | Parser/parsetok.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Parser/parsetok.c b/Parser/parsetok.c index 93df0d69d0..6453b6afe5 100644 --- a/Parser/parsetok.c +++ b/Parser/parsetok.c @@ -39,6 +39,8 @@ PERFORMANCE OF THIS SOFTWARE. #include "parsetok.h" #include "errcode.h" +int Py_TabcheckFlag; + /* Forward */ static node *parsetok Py_PROTO((struct tok_state *, grammar *, int, @@ -93,6 +95,12 @@ PyParser_ParseFile(fp, filename, g, start, ps1, ps2, err_ret) err_ret->error = E_NOMEM; return NULL; } + if (Py_TabcheckFlag || Py_VerboseFlag) { + tok->filename = filename; + tok->altwarning = (filename != NULL); + if (Py_TabcheckFlag >= 2) + tok->alterror++; + } #ifdef macintosh { |
