[issue19116] duplicate test names in Lib/test/test_complex.py

2013-09-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset cddb3e1e5054 by Benjamin Peterson in branch '3.3': combine two tests to avoid duplicate names (closes #19116) http://hg.python.org/cpython/rev/cddb3e1e5054 New changeset d87ef944ddcc by Benjamin Peterson in branch 'default': merge 3.3 (#19116) http:

[issue19116] duplicate test names in Lib/test/test_complex.py

2013-09-28 Thread Xavier de Gaye
New submission from Xavier de Gaye: $ ./python -m test -v test_complex | grep test_truediv test_truediv (test.test_complex.ComplexTest) ... ok After renaming the first test_truediv to test_truediv_1 and the second one to test_truediv_2: $ ./python -m test -v test_complex | grep test_truediv tes