Tarek Ziadé <ziade.ta...@gmail.com> added the comment:

PEP8 :
  - removing space between function names and () 
     like:  function () -> function()

  - function(arg1,
             arg2,
             arg3)

    becomes 
 
    function(arg1, arg2, arg3)

- remove the usage of string.translate, type(foo) is StringType etc..

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue5164>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to