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 scoder
Recipients scoder
Date 2012-12-31.08:26:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1356942415.38.0.154383781049.issue16824@psf.upfronthosting.co.za>
In-reply-to
Content
Line 522 in test file Lib/test/test_pep380.py says:

                trace.append("Should not have yielded:", y)

However, 'trace' is a list and list.append() only takes one parameter, so this should read:

                trace.append("Should not have yielded: %r" % y)

I noticed it because Cython's type analysis refuses to compile this. This line is just a failure guard and is never reached in the normal test execution, that's why it doesn't show in CPython's test runs.
History
Date User Action Args
2012-12-31 08:26:55scodersetrecipients: + scoder
2012-12-31 08:26:55scodersetmessageid: <1356942415.38.0.154383781049.issue16824@psf.upfronthosting.co.za>
2012-12-31 08:26:55scoderlinkissue16824 messages
2012-12-31 08:26:55scodercreate