diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-03-02 23:47:36 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-02 23:47:36 -0500 |
commit | 59a59233f7005491ea4187b4e8e120baa0e3905d (patch) | |
tree | 0e60c9821ff135fd3783e02773fe2380591c9f1e /setup.py | |
parent | 40b52252a3108c8989afd6ca7e64ce9d4116cb4f (diff) | |
parent | 254cc0892a613e6681dad3802570d8e952a37075 (diff) | |
download | cmd2-git-59a59233f7005491ea4187b4e8e120baa0e3905d.tar.gz |
Merge pull request #295 from python-cmd2/case_sensitivity
Removed support for case-insensitive command parsing
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ Main features: - Redirect command output to file with `>`, `>>`; input from file with `<` - Bare `>`, `>>` with no filename send output to paste buffer (clipboard) - `py` enters interactive Python console (opt-in `ipy` for IPython console) - - Multi-line and case-insensitive commands + - Multi-line commands - Special-character command shortcuts (beyond cmd's `@` and `!`) - Settable environment parameters - Parsing commands with arguments using `argparse`, including support for sub-commands |