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 Retro
Recipients Retro, georg.brandl, loewis, rhettinger
Date 2008-12-13.00:53:27
SpamBayes Score 0.008492712
Marked as misclassified No
Message-id <1229129608.17.0.105280269307.issue4649@psf.upfronthosting.co.za>
In-reply-to
Content
http://docs.python.org/3.0/tutorial/controlflow.html#defining-functions


Please visit the above link and see line 6 in the example code.

...         a, b = b, a+b

should be fixed to

...         a, b = b, a + b

because PEP 8 recommends to

- Use spaces around arithmetic operators:
    Yes:
        i = i + 1
    No:
        i=i+1
History
Date User Action Args
2008-12-13 00:53:28Retrosetrecipients: + Retro, loewis, georg.brandl, rhettinger
2008-12-13 00:53:28Retrosetmessageid: <1229129608.17.0.105280269307.issue4649@psf.upfronthosting.co.za>
2008-12-13 00:53:27Retrolinkissue4649 messages
2008-12-13 00:53:27Retrocreate