Michael Foord <[email protected]> added the comment:
Actually they do - it is an obscure bug in the way the module is
specified in TestProgram that prevents this from working.
The code in parseArgs that is currently:
if len(args) > 0:
self.testNames = args
Should probably be:
if len(args) > 0:
self.testNames = args
self.module = None
Anyway - I'll report and fix that as a separate issue. :-)
----------
resolution: -> works for me
status: open -> closed
_______________________________________
Python tracker <[email protected]>
<http://bugs.python.org/issue5989>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com