[Python-checkins] r65018 - in sandbox/trunk/2to3: example.py lib2to3/fixes/fix_urllib.py lib2to3/tests/test_fixers.py

Benjamin Peterson musiccomposition at gmail.com
Wed Jul 16 19:40:09 CEST 2008


On Wed, Jul 16, 2008 at 12:12 PM, Collin Winter <collinw at gmail.com> wrote:
> On Wed, Jul 16, 2008 at 9:55 AM, benjamin.peterson
> <python-checkins at python.org> wrote:
>> Author: benjamin.peterson
>> Date: Wed Jul 16 18:55:21 2008
>> New Revision: 65018
>>
>> Log:
>> normalize whitespace
>>
>> Modified:
>>   sandbox/trunk/2to3/example.py
>>   sandbox/trunk/2to3/lib2to3/fixes/fix_urllib.py
>>   sandbox/trunk/2to3/lib2to3/tests/test_fixers.py
>>
>> Modified: sandbox/trunk/2to3/example.py
>> ==============================================================================
>> --- sandbox/trunk/2to3/example.py       (original)
>> +++ sandbox/trunk/2to3/example.py       Wed Jul 16 18:55:21 2008
>> @@ -1,5 +1,5 @@
>>  #!/usr/bin/python
>> -       # comment indented by tab
>> +        # comment indented by tab
>>
>>  """Docstring.
>>
>> @@ -73,7 +73,7 @@
>>     if not a.has_key(b) ** 2: pass
>>
>>  def foo():
>> -       pass # body indented by tab
>> +    pass # body indented by tab
>>
>>  def test_ws_comma():
>>     yield 1,2 ,3
>
> Why did you change these two? It's very clearly marked that they should be tabs.

I'm sorry. I just ran reindent over the whole codebase.


-- 
Cheers,
Benjamin Peterson
"There's no place like 127.0.0.1."


More information about the Python-checkins mailing list