[issue10456] unittest.main(verbosity=2) broke in python31, worked when I had python27

2010-11-18 Thread R. David Murray
R. David Murray added the comment: 2.7 is post-3.1. This works as you expect in 3.2. This is, it is a new feature in both 2.7 and 3.2. (NB: this is why I wanted 3.2 to come out close to 2.7, but fortunately this is the first report like this I think we've gotten.) -- nosy: +r.david

[issue10456] unittest.main(verbosity=2) broke in python31, worked when I had python27

2010-11-18 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti, michael.foord ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10456] unittest.main(verbosity=2) broke in python31, worked when I had python27

2010-11-18 Thread Terry Herron
New submission from Terry Herron : The unittest.py module no longer accepts verbosity=2 when calling main. This worked in Python27. Example... unittest.main(verbosity=2) ## THE FIX IN unittest.py## CHANGE FROM: 1547 def __init__(self, module='__main__', defaultTest=None, 1548