[issue8930] messed up formatting after reindenting

2013-02-20 Thread R. David Murray
R. David Murray added the comment: Looks like there's no reason for this issue to still be open. If I'm wrong one of the principles can reopen it ;) -- nosy: +r.david.murray stage: -> committed/rejected status: open -> closed ___ Python tracker

[issue8930] messed up formatting after reindenting

2010-07-05 Thread Mark Dickinson
Mark Dickinson added the comment: I've fixed the _math.c formatting (r82595, r82596). -- nosy: +mark.dickinson ___ Python tracker ___

[issue8930] messed up formatting after reindenting

2010-07-05 Thread Benjamin Peterson
Benjamin Peterson added the comment: There is also some unpretty formatting in _math.c. -- ___ Python tracker ___ ___ Python-bugs-list

[issue8930] messed up formatting after reindenting

2010-06-23 Thread Stefan Krah
Stefan Krah added the comment: Antoine, thanks. ceval.c fixes committed in r82177, r82179, r82181 and r82182. -- ___ Python tracker ___ __

[issue8930] messed up formatting after reindenting

2010-06-23 Thread Antoine Pitrou
Antoine Pitrou added the comment: Stefan: it's ok with me, thanks. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue8930] messed up formatting after reindenting

2010-06-23 Thread Stefan Krah
Stefan Krah added the comment: Patch for ceval.c. If you agree with the macro indentation (starting in line 815) I can commit it and port it to the other branches. -- keywords: +patch nosy: +skrah Added file: http://bugs.python.org/file17752/trunk-ceval-indent.patch ___

[issue8930] messed up formatting after reindenting

2010-06-22 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: The following command also finds files, in which tabs are preceded only by spaces: find -name '*.[ch]' -exec grep -El $'^ *\t' {} \; -- ___ Python tracker __

[issue8930] messed up formatting after reindenting

2010-06-13 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: The following command (in bash shell) shows more files: find -name '*.[ch]' -exec grep -El $'^\t' {} \; I think that internal copies of libffi should be ignored. -- nosy: +Arfrever ___ Python tr

[issue8930] messed up formatting after reindenting

2010-06-09 Thread Antoine Pitrou
Antoine Pitrou added the comment: I've fixed some in r81860. If you see others, please signal them here. -- ___ Python tracker ___ ___

[issue8930] messed up formatting after reindenting

2010-06-06 Thread Benjamin Peterson
New submission from Benjamin Peterson : Some C code is incorrectly formatted after the Grand Indenting (TM). Take a gander at stringobject.c for an example. -- messages: 107240 nosy: benjamin.peterson, pitrou priority: normal severity: normal status: open title: messed up formatting aft