[Python-checkins] r65543 - python/trunk/Parser/tokenizer.c
andrew.kuchling
python-checkins at python.org
Tue Aug 5 04:05:23 CEST 2008
Author: andrew.kuchling
Date: Tue Aug 5 04:05:23 2008
New Revision: 65543
Log:
#3367: revert rev. 65539: this change causes test_parser to fail
Modified:
python/trunk/Parser/tokenizer.c
Modified: python/trunk/Parser/tokenizer.c
==============================================================================
--- python/trunk/Parser/tokenizer.c (original)
+++ python/trunk/Parser/tokenizer.c Tue Aug 5 04:05:23 2008
@@ -1117,7 +1117,7 @@
register int c;
int blankline;
- tok->line_start = *p_start = *p_end = NULL;
+ *p_start = *p_end = NULL;
nextline:
tok->start = NULL;
blankline = 0;
More information about the Python-checkins
mailing list