summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* rely on already-imported String()python2Dave Eargle2019-06-181-2/+1
| | | | closes #694
* py27 tests passing -- redirect operator was not being recognized because was ↵Dave Eargle2019-06-181-0/+1
| | | | | | nested within a parsed list. Therefore appending >> was not working
* Updated release date for 0.8.9 release for Python 20.8.9Todd Leonhardt2018-08-201-1/+1
| | | | This is probably the final release for Python 2.7
* Merge pull request #493 from python-cmd2/extra_slashkmvanbrunt2018-08-015-7/+14
|\ | | | | Fixed case where extra slash was printing when tab completing users on Windows
| * Updated version numberKevin Van Brunt2018-08-015-5/+5
| |
| * Fixed case where extra slash was printing when tab completing users on WindowsKevin Van Brunt2018-08-012-3/+10
|/
* display_matches is no longer restricted to delimited strings0.8.8Kevin Van Brunt2018-06-072-13/+20
|
* Backported file open crash fixes for Issue #430 to python2 branchTodd Leonhardt2018-06-076-34/+147
| | | | | | Also: - Bumped version on python2 branch to 0.8.8 - Updated CHANGELOG
* Trying 0.8.7 for #4210.8.7kotfu2018-05-285-5/+5
|
* Update version to 0.8.6.1 for #4210.8.6.1kotfu2018-05-284-4/+4
|
* no dashes in rc version0.8.7rc1kotfu2018-05-284-4/+4
|
* Add ‘python-requires >= 2.7’ for #421kotfu2018-05-285-8/+13
|
* Updated CHANGELOG on python2 branch in preparation for 0.8.6 release0.8.6Todd Leonhardt2018-05-271-2/+5
|
* Adding main.py to python2 branch for manual testing with ipy enabledTodd Leonhardt2018-05-271-0/+12
|
* Merge pull request #418 from python-cmd2/quick_prkmvanbrunt2018-05-261-1/+1
|\ | | | | Fixed header in documentation
| * Fixed header in documentationKevin Van Brunt2018-05-261-1/+1
|/
* Added changes related to py consoleKevin Van Brunt2018-05-261-2/+7
|
* Updated the py console to tab complete Python identifiers and have its own ↵Kevin Van Brunt2018-05-261-18/+161
| | | | history
* Merge pull request #401 from python-cmd2/complete_alias-py2Todd Leonhardt2018-05-151-2/+5
|\ | | | | Completing alias names in value field of alias command since aliases …
| * Completing alias names in value field of alias command since aliases can be ↵Kevin Van Brunt2018-05-151-2/+5
|/ | | | nested
* Removed test codeKevin Van Brunt2018-05-151-2/+2
|
* Changed readline warning messageKevin Van Brunt2018-05-081-5/+6
|
* Merge pull request #396 from python-cmd2/readline_warning_py2Todd Leonhardt2018-05-081-17/+30
|\ | | | | Readline warning py2
| * Removed colorKevin Van Brunt2018-05-071-1/+1
| |
| * Backporting readline warningKevin Van Brunt2018-05-071-17/+30
|/
* Merge pull request #378 from python-cmd2/p2_submenu_fixkmvanbrunt2018-04-281-32/+35
|\ | | | | Subcommand tab completion fix
| * Fixed issue where completion display function was overwritten when a submenu ↵Kevin Van Brunt2018-04-281-32/+35
|/ | | | | | quits. Fixed issue where submenus did not pass up all completion parameters to complete().
* No longer running test_path_completion_complete_user unit test on WindowsKevin Van Brunt2018-04-261-5/+6
|
* Merge pull request #365 from python-cmd2/bugfix/364Todd Leonhardt2018-04-214-52/+239
|\ | | | | Backport bugfix related to help completion on commands using with_arg…
| * Added to changelog. Maybe fixed mock import on 2.7Eric Lin2018-04-212-2/+5
| |
| * Backport bugfix related to help completion on commands using ↵Eric Lin2018-04-203-51/+235
|/ | | | with_argparser_and_unknown_args.
* Created python2 branch for 0.8.x bug fix releasesTodd Leonhardt2018-04-155-4/+8
| | | | | Also: - Bumped version to 0.8.6 on this branch
* Updated the upload code within fabfile so that both source and wheel ↵Todd Leonhardt2018-04-151-1/+1
| | | | distributions get uploaded to PyPI
* Updated build step in fabfile to include both source and wheel distributions0.8.5Todd Leonhardt2018-04-151-1/+1
|
* Updated how opening quote addition worksKevin Van Brunt2018-04-151-1/+1
|
* Merge pull request #353 from python-cmd2/unhackifykmvanbrunt2018-04-158-198/+272
|\ | | | | Unhackify
| * Comment changeKevin Van Brunt2018-04-151-1/+1
| |
| * Comment updateKevin Van Brunt2018-04-151-1/+1
| |
| * Renamed variable to match what its called in cmd2.pyKevin Van Brunt2018-04-151-6/+6
| |
| * Updated comments and examplesKevin Van Brunt2018-04-153-3/+4
| |
| * More unit tests and commentsKevin Van Brunt2018-04-152-3/+21
| |
| * More opening quote unit testsKevin Van Brunt2018-04-151-3/+63
| |
| * Unit tests for adding opening quoteKevin Van Brunt2018-04-151-18/+68
| |
| * Improving documentationKevin Van Brunt2018-04-141-11/+18
| |
| * Still hammering out adding an opening quoteKevin Van Brunt2018-04-141-11/+13
| |
| * Updated .gitignore to ignore Visual Studio Code settings and configuraitonTodd Leonhardt2018-04-141-3/+11
| |
| * Added to enhancements sectionKevin Van Brunt2018-04-141-3/+5
| |
| * Corrected how an opening quote is added to delimited matches like pathsKevin Van Brunt2018-04-141-8/+13
| |
| * Changed opening quote check and comment for clarityKevin Van Brunt2018-04-141-3/+3
| |
| * Preparation for 0.8.5 releaseTodd Leonhardt2018-04-135-4/+22
| | | | | | | | | | - Bumped version to 0.8.5 - Added details to CHANGELOG.md regarding recent changes