[issue16824] typo in test

2012-12-31 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Fixed. Thank you, Stefan. I will be glad to see new bugs which you will found with Cython. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed type: compile error -> behavior ___ Python tr

[issue16824] typo in test

2012-12-31 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9472928af085 by Serhiy Storchaka in branch '3.3': Issue #16824: Fix a failure guard in the never reached in the normal test execution code in test_pep380. http://hg.python.org/cpython/rev/9472928af085 New changeset 5ef7d9d6 by Serhiy Storchaka

[issue16824] typo in test

2012-12-31 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list ma

[issue16824] typo in test

2012-12-31 Thread Stefan Behnel
New submission from Stefan Behnel: 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: