Ned Deily <n...@acm.org> added the comment:

The unittest module was substantially revised and enhanced for Python 2.7 and 
the upcoming 3.2.  Your test case now works properly under both.

$ python2.6 -m unittest -v simple_test

----------------------------------------------------------------------
Ran 0 tests in 0.000s

OK
$ python2.7 -m unittest -v simple_test
test_1 (simple_test.A) ... ok

----------------------------------------------------------------------
Ran 1 test in 0.000s

OK
$ python3.2 -m unittest -v simple_test
test_1 (simple_test.A) ... ok

----------------------------------------------------------------------
Ran 1 test in 0.000s

OK

Since only security issues are still being accepted for Python 2.6, this 
problem will not be fixed there.

----------
nosy: +ned.deily
resolution:  -> out of date
status: open -> closed

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue10033>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to