summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update version to 0.9.1 for #4210.9.1kotfu2018-05-285-5/+8
|
* For python 3 don’t build universal wheels0.9.0.1kotfu2018-05-281-2/+0
|
* Update version to 0.9.0.1 for #421kotfu2018-05-284-4/+4
|
* Update version to 0.9.1rc1 to try and fix #421kotfu2018-05-285-8/+10
|
* Fix error in setup.pyTodd Leonhardt2018-05-281-1/+0
| | | | PyPI doesn't recognize PyPy3 as a valid programming language
* Update CHANGELOG in preparation for 0.9.0 release0.9.0Todd Leonhardt2018-05-282-1/+4
|
* Merge pull request #420 from python-cmd2/preparseTodd Leonhardt2018-05-273-16/+14
|\ | | | | Fixed bug where preparse() wasn't called before parsing
| * Reverted preparse behavior to where it was (i.e. currently unused)Todd Leonhardt2018-05-272-1/+2
| |
| * Updated CHANGELOG with stuff from 0.8.6 releaseTodd Leonhardt2018-05-271-5/+13
| |
| * Fixed bug where preparse() wasn't called before parsingTodd Leonhardt2018-05-272-12/+1
|/ | | | | Also: - Deleted postparse() since it was redundant with postparsing_precmd()
* Merge pull request #419 from python-cmd2/py_updatesTodd Leonhardt2018-05-274-12/+5
|\ | | | | Removed unused function
| * Fixed conditional.py scriptTodd Leonhardt2018-05-263-3/+5
| | | | | | | | | | | | Also: - Made self.locals_in_py = True for main.py and examples/python_scripting.py - This makes debugging easier in the embedded IPython shell provided by the opt-in ipy command
| * Removed unused functionKevin Van Brunt2018-05-261-9/+0
|/
* Merge pull request #416 from python-cmd2/pyshell_readlinekmvanbrunt2018-05-263-19/+166
|\ | | | | Pyshell readline
| * Merge branch 'master' into pyshell_readlineKevin Van Brunt2018-05-2531-478/+630
| |\ | |/ |/|
* | Merge pull request #413 from python-cmd2/speedup_importkotfu2018-05-2431-480/+630
|\ \ | | | | | | Defer certain imports
| * | Make changes requested in PR #413kotfu2018-05-243-11/+41
| | |
| * | Oops, fixed another merge errorkotfu2018-05-231-263/+0
| | |
| * | Modify clipboard function referenceskotfu2018-05-231-4/+4
| | |
| * | Add EmptyStatement exception to default importskotfu2018-05-231-1/+1
| | |
| * | Fix import stragglerskotfu2018-05-234-12/+17
| | |
| * | Fix merge errorkotfu2018-05-231-2/+0
| | |
| * | Standardize cmd2 imports in tests and exampleskotfu2018-05-2321-72/+63
| | |
| * | Merge branch 'master' into speedup_importkotfu2018-05-2340-625/+614
| |\ \ | |/ / |/| | | | | | | | | | | | | | # Conflicts: # cmd2/cmd2.py # tests/test_completion.py # tests/test_submenu.py
| * | Add note about known issue of slow importkotfu2018-05-231-0/+3
| | |
| * | Update for current best practices for dev dependency installationkotfu2018-05-182-45/+38
| | |
| * | Add Statement to default importkotfu2018-05-151-1/+1
| | |
| * | Updated measurementskotfu2018-05-061-1/+9
| | |
| * | Move more code from cmd2.py into utils.pykotfu2018-05-063-127/+119
| | |
| * | Add progress update.kotfu2018-05-061-3/+9
| | |
| * | Add measurement for extraction of AddSubmenu()kotfu2018-05-061-0/+10
| | |
| * | Extract AddSubmenu() into it’s own modulekotfu2018-05-065-267/+271
| | |
| * | Add measurements for last 5 deferralskotfu2018-05-061-0/+9
| | |
| * | Defer 5 more importskotfu2018-05-061-7/+21
| | | | | | | | | | | | | | | | | | | | | | | | - datetime - functools - io - subprocess - traceback
| * | Add measurement for last five importskotfu2018-05-061-0/+8
| | |
| * | Defer five importskotfu2018-05-061-6/+9
| | | | | | | | | | | | | | | | | | | | | | | | - atexit - codecs - signal - tempfile - copy
| * | Add measurement for InteractiveConsolekotfu2018-05-061-1/+1
| | |
| * | Defer import of InteractiveConsolekotfu2018-05-062-2/+13
| | |
| * | Add measurement for deferring unittestkotfu2018-05-061-1/+12
| | |
| * | Defer import of unittestkotfu2018-05-063-212/+218
| | |
| * | Add measurement script and document to track progresskotfu2018-05-062-0/+50
| | |
| * | Add default imports back inkotfu2018-05-061-0/+2
| | |
| | * Added changes related to py consoleKevin Van Brunt2018-05-251-0/+4
| | |
| | * Updated comments and removed unneeded callKevin Van Brunt2018-05-251-8/+11
| | |
| | * Fixed issue where IPython was overwriting prompts and exception formatting ↵Kevin Van Brunt2018-05-251-1/+25
| | | | | | | | | | | | in the Python console
| | * Made Python console tab complete from the correct namespace.Kevin Van Brunt2018-05-241-59/+58
| | | | | | | | | | | | Reduced the amount of code within a try block.
| | * Merge branch 'master' into pyshell_readlineKevin Van Brunt2018-05-243-1/+30
| | |\ | |_|/ |/| |
* | | Merge pull request #411 from python-cmd2/autocompleterTodd Leonhardt2018-05-233-1/+30
|\ \ \ | | | | | | | | Fixes problem with not passing the parameter hint suppression down to…
| * | | Fixes problem with not passing the parameter hint suppression down to ↵Eric Lin2018-05-223-1/+30
|/ / / | | | | | | | | | | | | | | | | | | | | | sub-commands Added hint suppression on a per-parameter basis Added helper function to force an parameter to fall back to bash completion instead of using Cmd2 completion. - Hinting is still enabled by default but can be suppressed in the helper function.
| | * Clearing py's history before rebuilding itKevin Van Brunt2018-05-231-6/+8
| | |