summaryrefslogtreecommitdiff
path: root/cmd2.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* Fixed doc conf.py so it correctly sets PYTHONPATH for autodoc feature.Todd Leonhardt2017-02-121-1/+7
* Refactored to move all cmd2.Cmd class member variables to beginning.Todd Leonhardt2017-02-111-69/+71
* Fixed a typo and added a unit test.Todd Leonhardt2017-02-101-1/+1
* Improved some logging for invalid syntax errors.Todd Leonhardt2017-02-101-4/+38
* Added ability to set the new global variables which control parsing of argume...Todd Leonhardt2017-02-081-2/+31
* Simplified a couple if'sTodd Leonhardt2017-02-071-2/+2
* Moved preloop() and postloop() calls from _cmdloop() to cmdloop().Todd Leonhardt2017-02-071-8/+4
* Various parsing fixes and improvements:TL2017-02-071-12/+35
* Removed one boolean flag and added anotherTodd Leonhardt2017-02-061-26/+19
* Experiment with different modes of parsing command-line arguments for option ...Todd Leonhardt2017-02-061-12/+47
* Documented undocumented commands and removed command aliases.Todd Leonhardt2017-02-051-17/+9
* Various cleanup changes:Todd Leonhardt2017-02-051-15/+11
* Removed unused ljust() function wrapper for calling ljust on lists.Todd Leonhardt2017-02-051-10/+0
* Removed unused method fileimport() from cmd2.Cmd classTodd Leonhardt2017-02-051-10/+0
* Fixed how the six.moves.input function is imported and used.Todd Leonhardt2017-02-051-5/+5
* Removed an except clause which was only there to support Python 2.4 on Linux.Todd Leonhardt2017-02-051-16/+2
* Added can_clip declaration inside Windows code section for purposes of unit t...Todd Leonhardt2017-02-041-1/+3
* Added more and better unit tests for load and save commandsTodd Leonhardt2017-02-041-3/+6
* Made argument parsing more backward compatible by default.Todd Leonhardt2017-02-031-2/+17
* Removed some unused code.Todd Leonhardt2017-02-031-12/+3