mirror of https://github.com/python/cpython.git
Declare and use Py_TabcheckFlag here.
This commit is contained in:
parent
c095200783
commit
6135df6626
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue