File tree Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change
1
+ ## 2.4.2 (July 13, 2022)
2
+ * Enhancements
3
+ * Updated argparse decorator to remove annotations when the docstring is used for a command's help text.
4
+ * Updated unit test to be Python 3.11 compliant.
5
+
1
6
## 2.4.1 (April 13, 2022)
2
7
* Bug Fixes
3
8
* Fixed value for ` ansi.Bg.YELLOW ` .
Original file line number Diff line number Diff line change 16
16
<a href =" #version-two-notes " >Version 2.0 Notes</a >
17
17
</p >
18
18
19
- [ ![ Screenshot] ( cmd2.png )] ( https://youtu.be/DDU_JH6cFsA )
19
+ [ ![ Screenshot] ( https://raw.githubusercontent.com/python-cmd2/cmd2/master/ cmd2.png)] ( https://youtu.be/DDU_JH6cFsA )
20
20
21
21
cmd2 is a tool for building interactive command line applications in Python. Its goal is to make it
22
22
quick and easy for developers to build feature-rich and user-friendly interactive command line
@@ -28,7 +28,7 @@ when using cmd.
28
28
The developers toolbox
29
29
----------------------
30
30
31
- ![ system schema] ( https://github. com/python-cmd2/cmd2/blob /master/.github/images/graph.drawio.png )
31
+ ![ system schema] ( https://raw.githubusercontent. com/python-cmd2/cmd2/master/.github/images/graph.drawio.png )
32
32
33
33
34
34
When creating solutions developers have no shortage of tools to create rich and smart user interfaces.
Original file line number Diff line number Diff line change 69
69
#
70
70
# This is also used if you do content translation via gettext catalogs.
71
71
# Usually you set "language" from the command line for these cases.
72
- language = None
72
+ language = 'en'
73
73
74
74
# List of patterns, relative to source directory, that match files and
75
75
# directories to ignore when looking for source files.
Original file line number Diff line number Diff line change @@ -1371,5 +1371,5 @@ def test_add_parser_custom_completer():
1371
1371
no_custom_completer_parser = subparsers .add_parser (name = "no_custom_completer" )
1372
1372
assert no_custom_completer_parser .get_ap_completer_type () is None # type: ignore[attr-defined]
1373
1373
1374
- custom_completer_parser = subparsers .add_parser (name = "no_custom_completer " , ap_completer_type = CustomCompleter )
1374
+ custom_completer_parser = subparsers .add_parser (name = "custom_completer " , ap_completer_type = CustomCompleter )
1375
1375
assert custom_completer_parser .get_ap_completer_type () is CustomCompleter # type: ignore[attr-defined]
You can’t perform that action at this time.
0 commit comments