This commit is contained in:
Benjamin Peterson 2009-11-07 01:04:38 +00:00
parent c98efe0500
commit e3383b8e8f
1 changed files with 1 additions and 1 deletions

View File

@ -943,7 +943,7 @@ tok_backup(register struct tok_state *tok, register int c)
{
if (c != EOF) {
if (--tok->cur < tok->buf)
Py_FatalError("tok_backup: begin of buffer");
Py_FatalError("tok_backup: beginning of buffer");
if (*tok->cur != c)
*tok->cur = c;
}