summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_cmd.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #7449, part 10: test_cmd imports trace module using ↵Victor Stinner2010-04-271-2/+3
| | | | | | | | | | test_support.import_module() Use test_support.import_module() instead of import to raise a SkipTest exception if the import fail. Import trace fails if the threading module is missing. See also part 3: test_doctest: import trace module in test_coverage().
* #5991: let completion for the "help" command include help topics.Georg Brandl2010-01-061-2/+4
| | | | | This also simplifies the Cmd.get_names() method implementation; it was written at a time where dir() didn't consider base class attributes.
* Small fixes to test_cmd: fix signature of do_shell, remove duplicate import, ↵Georg Brandl2010-01-061-2/+4
| | | | add option to run the custom Cmd class.
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-231-2/+1
|
* Add test suite for cmd module.Georg Brandl2007-12-011-0/+186
Written by Michael Schneider for GHOP.