File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 1010 * Added more control over tab completion behavior including the following flags. The use of these flags is documented in cmd2.py
1111 * `` allow_appended_space ``
1212 * `` allow_closing_quote ``
13+ * Due to the tab completion changes, non-Windows platforms now depend on [ wcwidth] ( https://pypi.python.org/pypi/wcwidth ) .
1314
1415* Attribute Changes (Breaks backward compatibility)
1516 * `` exclude_from_help `` is now called `` hidden_commands `` since these commands are hidden from things other than help, including tab completion
Original file line number Diff line number Diff line change @@ -61,7 +61,8 @@ pip install -U cmd2
6161cmd2 works with Python 2.7 and Python 3.4+ on Windows, macOS, and Linux. It is pure Python code with
6262the only 3rd-party dependencies being on [ six] ( https://pypi.python.org/pypi/six ) ,
6363[ pyparsing] ( http://pyparsing.wikispaces.com ) , and [ pyperclip] ( https://github.com/asweigart/pyperclip ) .
64- Windows has an additional dependency on [ pyreadline] ( https://pypi.python.org/pypi/pyreadline ) and Python
64+ Windows has an additional dependency on [ pyreadline] ( https://pypi.python.org/pypi/pyreadline ) . Non-Windows platforms
65+ have an additional dependency on [ wcwidth] ( https://pypi.python.org/pypi/wcwidth ) . Finally, Python
65663.4 and earlier have an additional dependency on [ contextlib2] ( https://pypi.python.org/pypi/contextlib2 ) .
6667
6768For information on other installation options, see
You can’t perform that action at this time.
0 commit comments