summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Release v. 0.7.00.7.0Federico Ceratto2017-02-231-1/+1
* Minor PEP8 cleanup.Federico Ceratto2017-02-231-16/+6
* Merge pull request #54 from python-cmd2/doctest_goneTodd Leonhardt2017-02-232-28/+3
|\
| * Updated tox.ini to no longer try to run cmd2.py directly as part of the tests.Todd Leonhardt2017-02-231-1/+0
| * Removed inclusion and use of doctest since all doctests converted to pytest.Todd Leonhardt2017-02-231-27/+3
|/
* Merge pull request #53 from python-cmd2/empty_statementTodd Leonhardt2017-02-221-8/+11
|\
| * Changed EmptyStatement behavior so postparsing_postcmd() always runs.Todd Leonhardt2017-02-221-8/+11
|/
* Fix a Python 2 vs Python 3 bug in setup.pyTodd Leonhardt2017-02-181-20/+20
* Updated docs to discuss the new optional "ipy" command.Todd Leonhardt2017-02-181-0/+36
* Merge pull request #50 from python-cmd2/optional_ipythonTodd Leonhardt2017-02-182-3/+49
|\
| * 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-182-3/+49
|/
* Fixed a minor typoTodd Leonhardt2017-02-181-1/+2
* Updated install instructions to include how to install from GitHub using pip.Todd Leonhardt2017-02-181-4/+42
* Finsished porting old doctests to pytest unit tests.Todd Leonhardt2017-02-181-80/+158
* Merge pull request #49 from python-cmd2/doctest_to_pytestTodd Leonhardt2017-02-172-231/+370
|\
| * Step 2 of porting doctest to pytest.Todd Leonhardt2017-02-171-56/+122
| * Converting doctests to pytestTodd Leonhardt2017-02-172-231/+304
|/
* 3rd time's a charm ...Todd Leonhardt2017-02-171-1/+2
* Changing docs badge link back to previous one since it worked betterTodd Leonhardt2017-02-171-1/+1
* Changing link for latest docs badgeTodd Leonhardt2017-02-171-1/+1
* Merge pull request #48 from python-cmd2/help_typosTodd Leonhardt2017-02-161-6/+10
|\
| * Improve the help text of a couple commandsTodd Leonhardt2017-02-161-6/+10
|/
* Merge pull request #46 from python-cmd2/select_indexTodd Leonhardt2017-02-161-2/+3
|\
| * Deal with select index out of range.Todd Leonhardt2017-02-161-2/+3
|/
* Merge pull request #45 from python-cmd2/disable_redirectionTodd Leonhardt2017-02-162-14/+33
|\
| * Added member boolean flag to disable output redirection and piping.Todd Leonhardt2017-02-162-14/+33
|/
* Merge pull request #44 from python-cmd2/cmds_at_invocationTodd Leonhardt2017-02-151-8/+25
|\
| * 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
* Fix GitHub front-page formatting in README.rstTodd Leonhardt2017-02-121-21/+29
* Added installation instructions to documentation.Todd Leonhardt2017-02-123-9/+120
* Documentation fixes and updatesTodd Leonhardt2017-02-121-2/+23
* Documentation updatesTodd Leonhardt2017-02-127-48/+54
* Created several help_* methods for do_* methods.Todd Leonhardt2017-02-121-60/+133
* Improved some commentsTodd Leonhardt2017-02-121-48/+95
* Add six module to requirements for building docsTodd Leonhardt2017-02-123-4/+2
* Adding requirements.txt to doc section to try to fix autodoc on readthedocsTodd Leonhardt2017-02-122-1/+2
* Fixed doc conf.py so it correctly sets PYTHONPATH for autodoc feature.Todd Leonhardt2017-02-122-5/+17
* Refactored to move all cmd2.Cmd class member variables to beginning.Todd Leonhardt2017-02-115-97/+104
* Updated doc links to point to Python 3 docs for cmd module.Todd Leonhardt2017-02-115-7/+8
* docs now use the sphinx_rtd_theme.Todd Leonhardt2017-02-113-114/+81
* Merge pull request #42 from python-cmd2/perror_improvementTodd Leonhardt2017-02-103-6/+49
|\
| * Fixed a typo and added a unit test.Todd Leonhardt2017-02-103-2/+11
| * Improved some logging for invalid syntax errors.Todd Leonhardt2017-02-101-4/+38
|/
* Merge pull request #39 from python-cmd2/parsing_experimentsTodd Leonhardt2017-02-084-40/+118
|\
| * 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