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 ezio.melotti
Recipients Alexandre.Zani, Ramchandra Apte, Yury.Selivanov, brett.cannon, eric.araujo, ezio.melotti, larry
Date 2012-06-19.18:38:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1340131115.45.0.022923676535.issue15008@psf.upfronthosting.co.za>
In-reply-to
Content
I left a few comments on rietveld.
The '\' is sometimes used where not necessary and the preferred way to write conditions on multiple lines is:
(foo == bar and
 bar == baz and
 baz == asd)
rather than
foo == bar \
    and bar == baz \
    and baz == asd

Have you measured the coverage of the tests?
History
Date User Action Args
2012-06-19 18:38:35ezio.melottisetrecipients: + ezio.melotti, brett.cannon, larry, eric.araujo, Yury.Selivanov, Alexandre.Zani, Ramchandra Apte
2012-06-19 18:38:35ezio.melottisetmessageid: <1340131115.45.0.022923676535.issue15008@psf.upfronthosting.co.za>
2012-06-19 18:38:34ezio.melottilinkissue15008 messages
2012-06-19 18:38:34ezio.melotticreate