[issue28139] Misleading Indentation in C source code

2016-09-17 Thread Martin Panter
Changes by Martin Panter : -- stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list maili

[issue28139] Misleading Indentation in C source code

2016-09-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset a2bfec367cef by Martin Panter in branch '2.7': Issue #28139: Fix messed up indentation https://hg.python.org/cpython/rev/a2bfec367cef New changeset 0e2a891639dd by Martin Panter in branch '3.5': Issue #28139: Fix messed up indentation https://hg.pyt

[issue28139] Misleading Indentation in C source code

2016-09-16 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: In general LGTM. This is not cosmetic change, this fixes readability of the sources. But I left few comments on Rietveld. -- assignee: -> martin.panter nosy: +serhiy.storchaka ___ Python tracker

[issue28139] Misleading Indentation in C source code

2016-09-15 Thread Martin Panter
Changes by Martin Panter : Added file: http://bugs.python.org/file44684/indent.py3.patch ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue28139] Misleading Indentation in C source code

2016-09-15 Thread Martin Panter
Changes by Martin Panter : Added file: http://bugs.python.org/file44683/indent.patch ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue28139] Misleading Indentation in C source code

2016-09-15 Thread Martin Panter
Martin Panter added the comment: . I found more messed up indentation looking through Antoine’s large “untabify” commit r81029. These don’t trigger compiler warnings, but I think it may be worth restoring them. -- nosy: +martin.panter stage: resolved -> patch review status: closed -> o

[issue28139] Misleading Indentation in C source code

2016-09-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4d91f5c2ef99 by Benjamin Peterson in branch '2.7': fix misleading indentation (closes #28139) https://hg.python.org/cpython/rev/4d91f5c2ef99 -- nosy: +python-dev resolution: -> fixed stage: -> resolved status: open -> closed _

[issue28139] Misleading Indentation in C source code

2016-09-13 Thread ppperry
Changes by ppperry : -- title: Misleading Indentation -> Misleading Indentation in C source code ___ Python tracker ___ ___ Python-bug

[issue28139] Misleading Indentation

2016-09-13 Thread Francisco Couzo
New submission from Francisco Couzo: Fixed the warnings that appear when compiling 2.7 with -Wmisleading-indentation (Included in -Wall since GCC 6). Kinda related, though I don't think there would be too much interest in fixing it (all the tabs in Python's C source): $ find . -name '*.c' -pri