summaryrefslogtreecommitdiff
path: root/cmd2/pyscript_bridge.py
Commit message (Expand)AuthorAgeFilesLines
* Renamed PyscriptBridge to PyBridgeKevin Van Brunt2019-07-201-109/+0
* Made last_result public and restored the initialization of it in __init__ and...Todd Leonhardt2019-06-231-3/+3
* Restored a few attributes to be publicTodd Leonhardt2019-06-231-1/+1
* Began work to minimize public APITodd Leonhardt2019-06-151-1/+1
* Updated documentationKevin Van Brunt2019-06-151-1/+1
* Deprecate support for Python 3.4 and begin testing with Python 3.8 betaTodd Leonhardt2019-06-141-7/+1
* Updated change log and commentKevin Van Brunt2019-06-071-1/+1
* Removed copyright headers from source files and updated LICENSE with current ...Kevin Van Brunt2019-06-071-3/+0
* Removed self._should_quit from cmd2 and add logic to PyscriptBridge to return...Kevin Van Brunt2019-06-071-8/+16
* Only enabling/disabling stdout storage in the call PyscriptBridge makes to on...Kevin Van Brunt2019-04-231-5/+4
* Removed unused class member and updated commentKevin Van Brunt2019-04-101-3/+1
* Pyscript now saves command output during the same period that redirection doesKevin Van Brunt2019-04-101-0/+4
* No longer appending \n to commands run by PyscriptBridge. This messes up redi...Kevin Van Brunt2019-03-191-2/+1
* Cleaned up some PyCharm warningsTodd Leonhardt2019-03-131-0/+1
* Replaced StdSim.__store_output with StdSim.pause_storageKevin Van Brunt2019-03-091-3/+4
* Added way to turn off storing stdout and stderr in StdSimKevin Van Brunt2019-03-061-10/+27
* Fixed a lot of warningsKevin Van Brunt2019-03-011-1/+1
* Removed ability to call commands as if they were functions in pyscript (e.g. ...Kevin Van Brunt2019-02-281-281/+25
* Fix flake8 issuesTodd Leonhardt2018-12-061-2/+1
* Updated commentKevin Van Brunt2018-11-301-4/+4
* RefactoredKevin Van Brunt2018-10-131-26/+29
* Argparse commands called as methods of PyscriptBridge now go through onecmd_p...Kevin Van Brunt2018-10-121-14/+15
* Non-argparse commands called as methods of PyscriptBridge now go through onec...Kevin Van Brunt2018-10-121-1/+6
* Fixed ArgparseFunctor to allow flag looking tokens in REMAINDER sectionsKevin Van Brunt2018-10-101-2/+4
* Added code to handle -- in argparse completerKevin Van Brunt2018-10-101-3/+3
* Added ability for argcompleter to determine difference between flag and negat...Kevin Van Brunt2018-10-091-6/+7
* Use argparser to determine if a token looks like an optionalKevin Van Brunt2018-10-071-17/+2
* Allowing negative number values when checking for optional prefix charactersKevin Van Brunt2018-10-071-5/+6
* Added check to prevent optional value strings from being accepted as positionalsKevin Van Brunt2018-10-061-4/+23
* Quoting strings with utility functionKevin Van Brunt2018-10-061-5/+3
* Fixed unit test failures and addressed code review commentsTodd Leonhardt2018-10-061-5/+6
* Merge remote-tracking branch 'origin/master' into argparse_remainderEric Lin2018-10-061-4/+11
|\
| * Simplified codeKevin Van Brunt2018-10-051-1/+1
| * No longer using stderr and self.data together to determine truthiness of a Co...Kevin Van Brunt2018-10-051-3/+10
| * Using sub-command instead of subcommand where possible to be consistent with ...Kevin Van Brunt2018-10-051-1/+1
* | Added handling of nargs=argparse.REMAINDER in both AutoCompleter and Argparse...Eric Lin2018-10-061-16/+49
|/
* Tweaked some error stringsKevin Van Brunt2018-10-031-2/+2
* Returned cmd_echo default to False except when running a Python command at th...Kevin Van Brunt2018-10-021-1/+1
* Improved documentationKevin Van Brunt2018-10-021-3/+5
* Default cmd_echo to True in PyscriptBridge so things like 'py app.help()' wil...Kevin Van Brunt2018-10-021-5/+5
* Changed PyscriptBridge.__getattr__ to raise Attribute error for non-commandsKevin Van Brunt2018-10-021-2/+6
* Added echo parameter for calling commands from PyscriptKevin Van Brunt2018-10-021-7/+16
* Refactored functions to use cmd2.cmd_func()Kevin Van Brunt2018-09-281-15/+15
* Fixed several hack classes build to simulate file descriptorsTodd Leonhardt2018-09-231-33/+8
* Deprecated CmdResult helper class and promoted CommandResultTodd Leonhardt2018-06-231-1/+1
* Added yet more type hintingTodd Leonhardt2018-06-101-2/+2
* Working on improving type hintingTodd Leonhardt2018-06-091-2/+3
* Changed some unit tests to use pytest-mock instead of mocker/monkeypatch beca...Eric Lin2018-05-191-2/+2
* Added type hinting.Eric Lin2018-05-181-10/+9
* Suppresses stdout and stderr output by default when calling an application co...Eric Lin2018-05-171-15/+31