File tree 4 files changed +11
-6
lines changed
4 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 7
7
* Release date: TBD*
8
8
9
9
* 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
11
11
* Enhancements
12
12
* 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
15
20
16
21
0.7.2
17
22
-----
Original file line number Diff line number Diff line change 87
87
except ImportError :
88
88
pass
89
89
90
- __version__ = '0.7.3a '
90
+ __version__ = '0.7.3 '
91
91
92
92
# Pyparsing enablePackrat() can greatly speed up parsing, but problems have been seen in Python 3 in the past
93
93
pyparsing .ParserElement .enablePackrat ()
Original file line number Diff line number Diff line change 5
5
"""
6
6
from setuptools import setup
7
7
8
- VERSION = '0.7.3a '
8
+ VERSION = '0.7.3 '
9
9
DESCRIPTION = "Extra features for standard library's cmd module"
10
10
11
11
LONG_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 22
22
23
23
24
24
def test_ver ():
25
- assert cmd2 .__version__ == '0.7.3a '
25
+ assert cmd2 .__version__ == '0.7.3 '
26
26
27
27
28
28
def test_base_help (base_app ):
You can’t perform that action at this time.
0 commit comments