This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author christian.heimes
Recipients brett.cannon, christian.heimes, gvanrossum
Date 2007-10-20.01:46:01
SpamBayes Score 0.008660562
Marked as misclassified No
Message-id <47195DD7.5060905@cheimes.de>
In-reply-to <47195BC7.6020304@cheimes.de>
Content
It's unrelated to the problem but Parser/tokenizer.c:1619 has a minor bug.

>         while(((tok->lineno <= 2) && (tok->done == E_OK))) {
>                 PyTokenizer_Get(tok, &p_start, &p_end);
>         }

(tok->lineno < 2) is sufficient. See line 516

Christian
History
Date User Action Args
2007-10-20 01:46:01christian.heimessetspambayes_score: 0.00866056 -> 0.008660562
recipients: + christian.heimes, gvanrossum, brett.cannon
2007-10-20 01:46:01christian.heimeslinkissue1267 messages
2007-10-20 01:46:01christian.heimescreate