File tree Expand file tree Collapse file tree 4 files changed +11
-6
lines changed
Expand file tree Collapse file tree 4 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 77* Release date: TBD*
88
99* Bug fixes
10- * Fixed a bug in display a span of history items when only an end index is supplied
10+ * Fixed a bug in displaying a span of history items when only an end index is supplied
1111* Enhancements
1212 * Added the ability to exclude commands from the help menu (** eof** included by default)
13- * Redundant list command removed and features merged into history command
14- * Added ** pyscript** command which supports running Python scripts with arguments
13+ * Redundant ** list** command removed and features merged into ** history** command
14+ * Added ** pyscript** command which supports tab-completion and running Python scripts with arguments
15+ * Changed default value of USE_ARG_LIST to True - this affects the beavhior of all ** @options ** commands
16+ * ** WARNING** : This breaks backwards compatibility, to restore backwards compatibility, add this to the
17+ ** __ init__ ()** method in your custom class derived from cmd2.Cmd:
18+ * set_use_arg_list(False)
19+ * This change improves argument parsing for all new applications
1520
16210.7.2
1722-----
Original file line number Diff line number Diff line change 8787except ImportError :
8888 pass
8989
90- __version__ = '0.7.3a '
90+ __version__ = '0.7.3 '
9191
9292# Pyparsing enablePackrat() can greatly speed up parsing, but problems have been seen in Python 3 in the past
9393pyparsing .ParserElement .enablePackrat ()
Original file line number Diff line number Diff line change 55"""
66from setuptools import setup
77
8- VERSION = '0.7.3a '
8+ VERSION = '0.7.3 '
99DESCRIPTION = "Extra features for standard library's cmd module"
1010
1111LONG_DESCRIPTION = """cmd2 is an enhancement to the standard library's cmd module for Python 2.7
Original file line number Diff line number Diff line change 2222
2323
2424def test_ver ():
25- assert cmd2 .__version__ == '0.7.3a '
25+ assert cmd2 .__version__ == '0.7.3 '
2626
2727
2828def test_base_help (base_app ):
You can’t perform that action at this time.
0 commit comments