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:
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