
python-checkins at python
Nov 6, 2009, 6:20 PM
Post #1 of 1
(42 views)
Permalink
|
|
r76139 - python/trunk/Parser/tokenizer.c
|
|
Author: benjamin.peterson Date: Sat Nov 7 02:04:38 2009 New Revision: 76139 Log: spelling Modified: python/trunk/Parser/tokenizer.c Modified: python/trunk/Parser/tokenizer.c ============================================================================== --- python/trunk/Parser/tokenizer.c (original) +++ python/trunk/Parser/tokenizer.c Sat Nov 7 02:04:38 2009 @@ -943,7 +943,7 @@ { 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; } _______________________________________________ Python-checkins mailing list Python-checkins[at]python.org http://mail.python.org/mailman/listinfo/python-checkins
|