[issue24895] indentation fix in ceval.c in python 2.7

2015-08-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset ea2f6fd04307 by Benjamin Peterson in branch '2.7': remove tabs from ceval.c (closes #24895) https://hg.python.org/cpython/rev/ea2f6fd04307 -- nosy: +python-dev resolution: -> fixed stage: patch review -> resolved status: open -> closed ___

[issue24895] indentation fix in ceval.c in python 2.7

2015-08-19 Thread STINNER Victor
Changes by STINNER Victor : -- title: indentation fix in ceval.c -> indentation fix in ceval.c in python 2.7 ___ Python tracker ___ __

[issue24895] indentation fix in ceval.c

2015-08-19 Thread Antoine Pitrou
Antoine Pitrou added the comment: The Python 3 code doesn't have tabs. I'm assuming Benjamin took the original patch instead of trying to backport the Python 3 commit. -- nosy: +benjamin.peterson ___ Python tracker

[issue24895] indentation fix in ceval.c

2015-08-19 Thread Laurent Coustet
Laurent Coustet added the comment: by the way, the rest of the code did not contain any tab in ceval.c. They were added by 17d3bbde60d2 -- ___ Python tracker ___ ___

[issue24895] indentation fix in ceval.c

2015-08-19 Thread R. David Murray
R. David Murray added the comment: I couldn't remember either. Antoine should know, he did the work/commit. -- nosy: +pitrou, r.david.murray ___ Python tracker ___ _

[issue24895] indentation fix in ceval.c

2015-08-19 Thread Brett Cannon
Brett Cannon added the comment: Thanks for the patch, Laurent. Can any other core devs remembered if we explicitly untabbed the C source in 2.7? I know we did in Python 3, but I can't remember if we did it in Python 2 to make patches easier. -- nosy: +brett.cannon stage: -> patch rev

[issue24895] indentation fix in ceval.c

2015-08-19 Thread Laurent Coustet
New submission from Laurent Coustet: https://hg.python.org/cpython/rev/17d3bbde60d2 introduced a patch using tabs for indentation in ceval.c. Attached patch just make the code more consistent by using spaces instead of tabs for indentation. Related to: http://bugs.python.org/issue4753 -