[Python-checkins] r76139 - python/trunk/Parser/tokenizer.c

benjamin.peterson python-checkins at python.org
Sat Nov 7 02:04:39 CET 2009


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;
 	}


More information about the Python-checkins mailing list