[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 na
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
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
>python/trunk/Obj