[Python-Dev] Nasty trunk test failures

2006-03-30 Thread Tim Peters
test_tokenize started failing on all the trunk buildbots immediately after this seemingly unrelated checkin: Author: armin.rigo Date: Thu Mar 30 16:04:02 2006 New Revision: 43458 Modified: python/trunk/Lib/test/test_index.py python/trunk/Objects/abstract.c

Re: [Python-Dev] Nasty trunk test failures

2006-03-30 Thread Guido van Rossum
On 3/30/06, Tim Peters [EMAIL PROTECTED] wrote: test_tokenize started failing on all the trunk buildbots immediately after this seemingly unrelated checkin: tokenize seems to be mishandling this line: assert 6 .__index__() == 6 Note the space between '6' and '.'. I'm guessing that

Re: [Python-Dev] Nasty trunk test failures

2006-03-30 Thread Tim Peters
[Guido] tokenize seems to be mishandling this line: assert 6 .__index__() == 6 Note the space between '6' and '.'. I'm guessing that the untokenization of this somehow drops the space; this seems to be a bug in untokenize() which probably should add a safety space after names as