summaryrefslogtreecommitdiff
path: root/cmd2.py
Commit message (Expand)AuthorAgeFilesLines
* Abbreviations are no longer accepted for multiline commandsTodd Leonhardt2017-05-201-2/+2
* Fixed a hard-coded path separatorTodd Leonhardt2017-05-181-2/+2
* Updated an example, features, and changes based on new support for path and c...Todd Leonhardt2017-05-171-6/+11
* Minor tweaksTodd Leonhardt2017-05-171-2/+2
* Tons of tab completion changesTodd Leonhardt2017-05-171-22/+181
* Improved local path completionTodd Leonhardt2017-05-161-26/+13
* Added path_complete() static method for local file system path completionTodd Leonhardt2017-05-161-0/+56
* Fix Windows unit testsTodd Leonhardt2017-05-111-1/+7
* Windows terminal doesn't use ANSI escape codesTodd Leonhardt2017-05-111-0/+4
* Added code to protect against GNU Readline bugTodd Leonhardt2017-05-111-1/+27
* Reverting change which prefers gnureadline if availableTodd Leonhardt2017-05-111-9/+0
* Added some checks to deal with unit testing on Windows systems with no readlineTodd Leonhardt2017-05-031-6/+15
* Try to import gnureadline and then if that fails import readlineTodd Leonhardt2017-05-031-17/+12
* Fixed transcript testing issuesTodd Leonhardt2017-04-261-43/+20
* Transcript testing now calls preloop() before and postloop() afterTodd Leonhardt2017-04-261-0/+7
* Don't throw exception when piping command output to a shell commandTodd Leonhardt2017-04-041-5/+11
* Added example of using a regular expression in a transcript test.Todd Leonhardt2017-03-161-7/+6
* Improved the CmdResult namedtuple subclassTodd Leonhardt2017-03-141-60/+76
* Minor whitespace tweaks to shorten a few really long lines.Todd Leonhardt2017-03-131-14/+17
* Mostly fix a bunch of spelling mistakes.Todd Leonhardt2017-03-131-18/+18
* Documentation updatesTodd Leonhardt2017-03-121-21/+30
* Finished code cleanup for nowTodd Leonhardt2017-03-121-130/+141
* More code cleanupTodd Leonhardt2017-03-121-19/+48
* Added a bunch of comments and deleted an unnecessary overridden method.Todd Leonhardt2017-03-121-4/+44
* Added a bunch of method and class comments.Todd Leonhardt2017-03-121-3/+69
* Code cleanupTodd Leonhardt2017-03-121-44/+104
* Code cleanupTodd Leonhardt2017-03-121-7/+38
* Fixed a bug where an exception would occur if the list command was run with a...Todd Leonhardt2017-03-121-0/+10
* Code cleanupTodd Leonhardt2017-03-121-8/+11
* Added an example for how conditional control flow of a cmd2 application can b...Todd Leonhardt2017-03-111-1/+30
* Improvements to py command.Todd Leonhardt2017-03-101-6/+19
* Added info to CHANGES.rst on what bugs have been fixed so far this release.Todd Leonhardt2017-03-041-8/+14
* Changes to make our project as welcoming as possible for new contributors.Todd Leonhardt2017-02-261-1/+1
* Added "-" to the list of legal characters.Todd Leonhardt2017-02-241-1/+1
* Bump version to 0.7.1aFederico Ceratto2017-02-231-1/+1
* Minor PEP8 cleanup.Federico Ceratto2017-02-231-16/+6
* Removed inclusion and use of doctest since all doctests converted to pytest.Todd Leonhardt2017-02-231-27/+3
* Changed EmptyStatement behavior so postparsing_postcmd() always runs.Todd Leonhardt2017-02-221-8/+11
* Changed a ModuleNotFoundErorr to ImportError for Python 2/3 compatibilityTodd Leonhardt2017-02-181-1/+1
* Added optional parameter to cmd2.Cmd.__init() to enable an "ipy" command.Todd Leonhardt2017-02-181-3/+45
* Converting doctests to pytestTodd Leonhardt2017-02-171-231/+23
* Improve the help text of a couple commandsTodd Leonhardt2017-02-161-6/+10
* Deal with select index out of range.Todd Leonhardt2017-02-161-2/+3
* Added member boolean flag to disable output redirection and piping.Todd Leonhardt2017-02-161-10/+12
* Added option to prevent processing of CLI args.Todd Leonhardt2017-02-151-3/+8
* Fixed how commands at invocation are dealt with.Todd Leonhardt2017-02-151-7/+19
* Fixed a minor typo in a commentTodd Leonhardt2017-02-131-38/+38
* Documentation updatesTodd Leonhardt2017-02-121-0/+3
* Created several help_* methods for do_* methods.Todd Leonhardt2017-02-121-60/+133
* Improved some commentsTodd Leonhardt2017-02-121-48/+95