mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
Print warnings to stderr and correct spelling
This commit is contained in:
parent
ba3690cd09
commit
888d205fff
1 changed files with 2 additions and 2 deletions
|
@ -49,14 +49,14 @@ addaccelerators(g)
|
|||
dfa *d;
|
||||
int i;
|
||||
#ifdef DEBUG
|
||||
printf("Adding parser accellerators ...\n");
|
||||
fprintf(stderr, "Adding parser accelerators ...\n");
|
||||
#endif
|
||||
d = g->g_dfa;
|
||||
for (i = g->g_ndfas; --i >= 0; d++)
|
||||
fixdfa(g, d);
|
||||
g->g_accel = 1;
|
||||
#ifdef DEBUG
|
||||
printf("Done.\n");
|
||||
fprintf(stderr, "Done.\n");
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue