This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author tarek
Recipients loewis, tarek
Date 2009-02-06.23:51:01
SpamBayes Score 0.0009498776
Marked as misclassified No
Message-id <1233964322.03.0.162011038269.issue5164@psf.upfronthosting.co.za>
In-reply-to
Content
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..
History
Date User Action Args
2009-02-06 23:52:02tareksetrecipients: + tarek, loewis
2009-02-06 23:52:02tareksetmessageid: <1233964322.03.0.162011038269.issue5164@psf.upfronthosting.co.za>
2009-02-06 23:51:01tareklinkissue5164 messages
2009-02-06 23:51:01tarekcreate