<div class="gmail_quote">On Thu, May 26, 2011 at 00:29, Serge Hulne <span dir="ltr"><<a href="mailto:serge.hulne@gmail.com">serge.hulne@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<span></span><span>Suggestion: Integrate the script "pindent.py" as standard command for formatting pyhton code<br><br>Here is the link;<br><a href="http://svn.python.org/projects/python/trunk/Tools/scripts/pindent.py" target="_blank">http://svn.python.org/projects/python/trunk/Tools/scripts/pindent.py</a><br>

<br>Pindent stands for "Pyton indent":<br><br>Goal : <br></span><ol><li><span>It provides bloc delimiters (end of blocks) in the for of comments (like "#end if" or "#end for" etc ... )</span></li>

<li><span>This allows one to check / restore the indentation of Python code, in cases where></span></li><ol><li><span>A copy/paste went wrong</span></li><li><span>The indentation of a Python source got corrupted when the script was posted on web page, send via email etc ...</span></li>

<li><span>Standardise (fix) sources which happily mix whitespaces and tabs <br></span></li><li><span>Make Python code more readable for developers used to end of blocs delimiters (Ruby, C, C++, C#,Java, etc ...)<br>
</span></li></ol></ol><span> Basically the idea is the same as the Go language "gofmt" (Go format).<br><br>Example:<br><br>#-------------------<br>- Before using pindent:<br><br>#!/usr/bin env python<br>
<br>i = 0<br>for c in "hello world":<br>    if c == 'l':<br>        i+=1<br>        print "number of occurrences of `l` :", i<br><br>#------------------<br>- After using indent:<br><br>#!/usr/bin env python<br>

<br>i = 0<br>for c in "hello world":<br>    if c == 'l':<br>        i+=1<br>        print "number of occurrences of `l` :", i<br>    # end if<br># end for</span></blockquote><div><br></div><div>
This is already included in the Python source tree, so I'm not sure what further inclusion/integration you are suggesting. I don't find this style necessary nor is it really a good style to promote, especially because Python isn't Ruby, C++, or any of the languages you listed.</div>
<div><br></div><div>The only time I've found it sort-of ok to do this is if a block nested in other blocks spans more than the height of one monitor view, which isn't often. Even then, most IDEs and editors handle this by having optional guides for block beginning and ending.</div>
</div>