index
:
delta/python-packages/cmd2-git.git
1216-rich-print-mixin
2.0
async_prompt
black
black_config
blank_prompt
border_color
ci_improvements
cmdset_settables
codeql
colored_simple_table
colored_tables
colored_tables_orig
column_spacing
complete_flag_names
completion_item_choices
ctrl-c
ctrl-d
custom_command_completer
custom_completer_refactor
dashes
default_categories
duplicate_subcommand
editors
enh_default_categories
error_cleanup
exception_passthrough
exit_code
ext_test_0_2
extended_colors
f-strings
fix_broken_unit_test
fix_hint
github_actions
header_tabs
history_fix
import_wrapping
ipy_locals
last_result
master
misc
move_attach
mypy_continued
mypy_explicit_export
nested_table
nested_table_orig
ns_fix
ordered_history
pep561
plugin_version
poutput-psuccess
prompt_error
py_refactor
pypy_fix
redirected_aliases
settable_hint
silence
silence_startup_script
silent_start
table_newline
topic_width
unit_tests
util_fixes
win_tab_crash
github.com: python-cmd2/cmd2.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
Branch
Commit message
Author
Age
1216-rich-print-mixin
Initial rich mixin class
Eric Lin
3 years
2.0
Merge branch 'master' into 2.0
Todd Leonhardt
4 years
async_prompt
Updated async_alert() to account for self.prompt not matching Readline's curr...
Kevin Van Brunt
4 years
black
Merge branch 'master' into black
Todd Leonhardt
4 years
black_config
Added black to Pipfile and black configuration to pyrpoject.toml
Todd Leonhardt
4 years
blank_prompt
Fixed issue in ansi.async_alert_str() which would raise IndexError if prompt ...
Kevin Van Brunt
3 years
border_color
Added ability to set border background color on BorderTables and AlternatingT...
Kevin Van Brunt
3 years
ci_improvements
Adds pre-commit config to run various linters
xNinjaKittyx
4 years
cmdset_settables
Resolves comments from PR
Eric Lin
4 years
codeql
Onboard to GitHub CodeQL security scanning
Todd Leonhardt
5 years
colored_simple_table
Added ability to colorize all aspects of SimpleTables
Kevin Van Brunt
4 years
colored_tables
Added ability to colorize all aspects of BorderedTables and AlternatingTables.
Kevin Van Brunt
4 years
colored_tables_orig
Added ability to colorize all aspects of BorderedTable and AlternatingTable
Kevin Van Brunt
4 years
column_spacing
Made the amount of space between columns in a SimpleTable configurable
Kevin Van Brunt
4 years
complete_flag_names
Fixed example code
Kevin Van Brunt
4 years
completion_item_choices
ArgparseCompleter now sorts CompletionItems created with numerical values as ...
Kevin Van Brunt
3 years
ctrl-c
Stopping a shell command with Ctrl-C now raises a KeyboardInterrupt to suppor...
Kevin Van Brunt
4 years
ctrl-d
do_eof() now just calls the quit function
Kevin Van Brunt
4 years
custom_command_completer
Updated documentation for setting custom parsers
Kevin Van Brunt
4 years
custom_completer_refactor
Added ap_completer_type arg to Cmd2ArgumentParser.__init__().
Kevin Van Brunt
4 years
dashes
Merge branch 'master' into dashes
kotfu
5 years
default_categories
Start to some improvements to default categories. Next: tag CommandSet classe...
Eric Lin
5 years
duplicate_subcommand
Fixed issue where instantiating more than one cmd2-based class which uses the...
Kevin Van Brunt
5 years
editors
Fix unit test that was failing when EDITOR environment variable was set
Todd Leonhardt
4 years
enh_default_categories
Minor type hinting fixes.
Eric Lin
5 years
error_cleanup
Replaced some pexcept() calls with perror().
Kevin Van Brunt
4 years
exception_passthrough
Added cmd2.exceptions.PassThroughException
Kevin Van Brunt
4 years
exit_code
No longer using -1 as an exit code
Kevin Van Brunt
4 years
ext_test_0_2
Updated URL and documentation in preparation for cmd2-ext-test 0.2.0 release
Eric Lin
5 years
extended_colors
Added support for 8-bit/256-colors with the cmd2.EightBitFg and cmd2.EightBit...
Kevin Van Brunt
4 years
f-strings
Increased unit test coverage for pexcept()
Kevin Van Brunt
4 years
fix_broken_unit_test
Skip a test which is failing on Python 3.8 and 3.9 for now to fix a unit test
Todd Leonhardt
4 years
fix_hint
fixes the type hint in example
Eric Lin
5 years
github_actions
Removed CONTRIBUTING.md file from the manifest (i.e. from the PyPI package)
Todd Leonhardt
4 years
header_tabs
Fixed FileNotFoundError which occurred when running 'history --clear' and no ...
Kevin Van Brunt
4 years
history_fix
Merge branch 'master' into history_fix
Todd Leonhardt
4 years
import_wrapping
Changed isort to force wrapping of imports to reduce merge conflicts from min...
Eric Lin
4 years
ipy_locals
Fixed type hints
Kevin Van Brunt
4 years
last_result
All cmd2 built-in commands now populate self.last_result
Kevin Van Brunt
4 years
master
Make sys.stdout check clearer.
Andrew Clark IV
24 months
misc
Updated documentation
Kevin Van Brunt
4 years
move_attach
Merge branch 'master' into move_attach
Kevin Van Brunt
5 years
mypy_continued
Add mypy validation action
Eric Lin
4 years
mypy_explicit_export
Changed CommandResult.stderr to a str instead of Optional[str]
Kevin Van Brunt
4 years
nested_table
Added settings to Column class which prevent a table from overriding existing...
Kevin Van Brunt
4 years
nested_table_orig
Added settings to Column class which prevent a table from overriding existing...
Kevin Van Brunt
4 years
ns_fix
Fixed issue where a ns_provider could be passed None instead of its correct c...
Kevin Van Brunt
3 years
ordered_history
Changed History to use OrderDict to support Python 3.6 in non-CPython environ...
Kevin Van Brunt
4 years
pep561
Added py.typed to signal that we support type annotations for PEP-561. Fixes ...
Eric Lin
4 years
plugin_version
Removed relative_to
Eric Lin
4 years
poutput-psuccess
Updating docs intersphinx to latest
Eric Lin
24 months
prompt_error
Fixed AttributeError in rl_get_prompt() when prompt is None.
Kevin Van Brunt
4 years
py_refactor
Renamed use_ipython keyword parameter of cmd2.Cmd.__init__() to include_ipy.
Kevin Van Brunt
4 years
pypy_fix
Added handling for OSError caused by trying to load a GNU readline shared lib...
Kevin Van Brunt
4 years
redirected_aliases
Fixed issue where quoted redirectors and terminators in aliases and macros we...
Kevin Van Brunt
5 years
settable_hint
Fixed bug where setting always_show_hint=True did not show a hint when comple...
Kevin Van Brunt
4 years
silence
Small refactor
Kevin Van Brunt
5 years
silence_startup_script
Renamed silent_startup_script to silence_startup_script for clarity
Kevin Van Brunt
4 years
silent_start
Merge branch 'master' into silent_start
Todd Leonhardt
4 years
table_newline
Fixed issue where TableCreator was tossing blank last lines
Kevin Van Brunt
4 years
topic_width
Updated documentation
Kevin Van Brunt
4 years
unit_tests
Added self.last_result unit tests for the history command.
Kevin Van Brunt
4 years
util_fixes
Shared implementation of write it StdSim
Eric Lin
4 years
win_tab_crash
Fixed tab completion crash on Windows
Kevin Van Brunt
4 years
Tag
Download
Author
Age
2.4.3
cmd2-git-2.4.3.tar.gz
Kevin Van Brunt
2 years
2.4.2
cmd2-git-2.4.2.tar.gz
Kevin Van Brunt
3 years
2.4.1
cmd2-git-2.4.1.tar.gz
Kevin Van Brunt
3 years
2.4.0
cmd2-git-2.4.0.tar.gz
Kevin Van Brunt
3 years
2.3.3
cmd2-git-2.3.3.tar.gz
Kevin Van Brunt
3 years
2.3.2
cmd2-git-2.3.2.tar.gz
Kevin Van Brunt
3 years
2.3.1
cmd2-git-2.3.1.tar.gz
Kevin Van Brunt
3 years
2.3.0
cmd2-git-2.3.0.tar.gz
Kevin Van Brunt
3 years
2.2.0
cmd2-git-2.2.0.tar.gz
Kevin Van Brunt
4 years
2.1.2
cmd2-git-2.1.2.tar.gz
Kevin Van Brunt
4 years
2.1.1
cmd2-git-2.1.1.tar.gz
Kevin Van Brunt
4 years
2.1.0
cmd2-git-2.1.0.tar.gz
Kevin Van Brunt
4 years
plugin-ext-test-2.0.0
cmd2-git-plugin-ext-test-2.0.0.tar.gz
Eric Lin
4 years
plugin-ext-test-0.3.0
cmd2-git-plugin-ext-test-0.3.0.tar.gz
Eric Lin
4 years
2.0.1
cmd2-git-2.0.1.tar.gz
Todd Leonhardt
4 years
2.0.0
cmd2-git-2.0.0.tar.gz
Kevin Van Brunt
4 years
1.5.0
cmd2-git-1.5.0.tar.gz
Todd Leonhardt
4 years
1.4.0
cmd2-git-1.4.0.tar.gz
Todd Leonhardt
4 years
1.3.11
cmd2-git-1.3.11.tar.gz
Kevin Van Brunt
5 years
1.3.10
cmd2-git-1.3.10.tar.gz
Kevin Van Brunt
5 years
plugin-ext-test-0.2.0
cmd2-git-plugin-ext-test-0.2.0.tar.gz
Eric Lin
5 years
1.3.9
cmd2-git-1.3.9.tar.gz
Kevin Van Brunt
5 years
1.3.8
cmd2-git-1.3.8.tar.gz
Kevin Van Brunt
5 years
1.3.7
cmd2-git-1.3.7.tar.gz
Eric Lin
5 years
1.3.6
cmd2-git-1.3.6.tar.gz
Kevin Van Brunt
5 years
1.3.5
cmd2-git-1.3.5.tar.gz
Kevin Van Brunt
5 years
1.3.4
cmd2-git-1.3.4.tar.gz
Kevin Van Brunt
5 years
1.3.3
cmd2-git-1.3.3.tar.gz
Kevin Van Brunt
5 years
1.3.2
cmd2-git-1.3.2.tar.gz
Eric Lin
5 years
1.3.1
cmd2-git-1.3.1.tar.gz
Eric Lin
5 years
1.3.0
cmd2-git-1.3.0.tar.gz
Eric Lin
5 years
1.2.1
cmd2-git-1.2.1.tar.gz
Todd Leonhardt
5 years
1.2.0
cmd2-git-1.2.0.tar.gz
Todd Leonhardt
5 years
1.1.0
cmd2-git-1.1.0.tar.gz
Todd Leonhardt
5 years
1.0.2
cmd2-git-1.0.2.tar.gz
Kevin Van Brunt
5 years
1.0.1
cmd2-git-1.0.1.tar.gz
Kevin Van Brunt
5 years
1.0.0
cmd2-git-1.0.0.tar.gz
Todd Leonhardt
5 years
0.10.1
cmd2-git-0.10.1.tar.gz
Kevin Van Brunt
5 years
0.10.0
cmd2-git-0.10.0.tar.gz
Todd Leonhardt
5 years
0.9.25
cmd2-git-0.9.25.tar.gz
Todd Leonhardt
5 years
0.9.24
cmd2-git-0.9.24.tar.gz
Todd Leonhardt
5 years
0.9.23
cmd2-git-0.9.23.tar.gz
Todd Leonhardt
5 years
0.9.22
cmd2-git-0.9.22.tar.gz
Kevin Van Brunt
5 years
0.9.21
cmd2-git-0.9.21.tar.gz
Kevin Van Brunt
5 years
0.9.20
cmd2-git-0.9.20.tar.gz
Kevin Van Brunt
5 years
0.9.19
cmd2-git-0.9.19.tar.gz
Kevin Van Brunt
6 years
0.9.18
cmd2-git-0.9.18.tar.gz
Kevin Van Brunt
6 years
0.9.17
cmd2-git-0.9.17.tar.gz
Kevin Van Brunt
6 years
python2
cmd2-git-python2.tar.gz
Todd Leonhardt
6 years
0.9.16
cmd2-git-0.9.16.tar.gz
Todd Leonhardt
6 years
0.9.15
cmd2-git-0.9.15.tar.gz
Todd Leonhardt
6 years
0.9.14
cmd2-git-0.9.14.tar.gz
Todd Leonhardt
6 years
0.9.13
cmd2-git-0.9.13.tar.gz
Todd Leonhardt
6 years
0.9.12
cmd2-git-0.9.12.tar.gz
Todd Leonhardt
6 years
0.9.11
cmd2-git-0.9.11.tar.gz
Kevin Van Brunt
6 years
0.9.10
cmd2-git-0.9.10.tar.gz
Kevin Van Brunt
6 years
0.9.9
cmd2-git-0.9.9.tar.gz
Kevin Van Brunt
6 years
0.9.8
cmd2-git-0.9.8.tar.gz
Todd Leonhardt
6 years
0.9.7
cmd2-git-0.9.7.tar.gz
Kevin Van Brunt
6 years
test_one
cmd2-git-test_one.tar.gz
Todd Leonhardt
7 years
0.9.6
cmd2-git-0.9.6.tar.gz
kmvanbrunt
7 years
0.9.5
cmd2-git-0.9.5.tar.gz
Kevin Van Brunt
7 years
0.9.4
cmd2-git-0.9.4.tar.gz
Todd Leonhardt
7 years
0.8.9
cmd2-git-0.8.9.tar.gz
Todd Leonhardt
7 years
0.9.3
cmd2-git-0.9.3.tar.gz
Kevin Van Brunt
7 years
0.9.2
cmd2-git-0.9.2.tar.gz
Todd Leonhardt
7 years
speedup_import
cmd2-git-speedup_import.tar.gz
Todd Leonhardt
7 years
0.8.8
cmd2-git-0.8.8.tar.gz
Kevin Van Brunt
7 years
0.9.1
cmd2-git-0.9.1.tar.gz
kotfu
7 years
0.8.7
cmd2-git-0.8.7.tar.gz
kotfu
7 years
0.9.0.1
cmd2-git-0.9.0.1.tar.gz
kotfu
7 years
0.8.6.1
cmd2-git-0.8.6.1.tar.gz
kotfu
7 years
0.8.7rc1
cmd2-git-0.8.7rc1.tar.gz
kotfu
7 years
0.9.0
cmd2-git-0.9.0.tar.gz
Todd Leonhardt
7 years
0.8.6
cmd2-git-0.8.6.tar.gz
Todd Leonhardt
7 years
0.8.5
cmd2-git-0.8.5.tar.gz
Todd Leonhardt
7 years
0.8.4
cmd2-git-0.8.4.tar.gz
Kevin Van Brunt
7 years
0.8.3
cmd2-git-0.8.3.tar.gz
Kevin Van Brunt
7 years
0.8.2
cmd2-git-0.8.2.tar.gz
Todd Leonhardt
7 years
0.8.1
cmd2-git-0.8.1.tar.gz
Todd Leonhardt
7 years
0.8.0
cmd2-git-0.8.0.tar.gz
Todd Leonhardt
7 years
0.7.9
cmd2-git-0.7.9.tar.gz
Todd Leonhardt
7 years
0.7.8
cmd2-git-0.7.8.tar.gz
Todd Leonhardt
7 years
0.7.7
cmd2-git-0.7.7.tar.gz
Todd Leonhardt
8 years
0.7.6
cmd2-git-0.7.6.tar.gz
Todd Leonhardt
8 years
0.7.5
cmd2-git-0.7.5.tar.gz
Todd Leonhardt
8 years
0.7.4
cmd2-git-0.7.4.tar.gz
Todd Leonhardt
8 years
0.7.3
cmd2-git-0.7.3.tar.gz
Todd Leonhardt
8 years
0.7.2
cmd2-git-0.7.2.tar.gz
Todd Leonhardt
8 years
0.7.1
cmd2-git-0.7.1.tar.gz
Todd Leonhardt
8 years
0.7.0
cmd2-git-0.7.0.tar.gz
Federico Ceratto
8 years
0.6.9
cmd2-git-0.6.9.tar.gz
Federico Ceratto
9 years
0.6.8
cmd2-git-0.6.8.tar.gz
Federico Ceratto
9 years
0.6.7
cmd2-git-0.6.7.tar.gz
Doug Hellmann
12 years
0.6.5.1
cmd2-git-0.6.5.1.tar.gz
Catherine Devlin
12 years
0.6.5
cmd2-git-0.6.5.tar.gz
Catherine Devlin
12 years
0.6.4
cmd2-git-0.6.4.tar.gz
Catherine Devlin
14 years
0.6.3
cmd2-git-0.6.3.tar.gz
Catherine Devlin
14 years
0.6.2
cmd2-git-0.6.2.tar.gz
Catherine Devlin
14 years
0.6.0
cmd2-git-0.6.0.tar.gz
Catherine Devlin
15 years
0.5.5
cmd2-git-0.5.5.tar.gz
Catherine Devlin
16 years
0.5.2
cmd2-git-0.5.2.tar.gz
Catherine Devlin
16 years
0.5.1
cmd2-git-0.5.1.tar.gz
Catherine Devlin
16 years
0.5.0
cmd2-git-0.5.0.tar.gz
Catherine Devlin
16 years
0.4.8
cmd2-git-0.4.8.tar.gz
Catherine Devlin
16 years
0.4.7
cmd2-git-0.4.7.tar.gz
Catherine Devlin
16 years
0.4.6
cmd2-git-0.4.6.tar.gz
Catherine Devlin
16 years
0.4.5
cmd2-git-0.4.5.tar.gz
Catherine Devlin
16 years
0.4.4
cmd2-git-0.4.4.tar.gz
Catherine Devlin
16 years
0.4.3
cmd2-git-0.4.3.tar.gz
Catherine Devlin
16 years
0.4.2
cmd2-git-0.4.2.tar.gz
Catherine Devlin
17 years
0.4.1
cmd2-git-0.4.1.tar.gz
Catherine Devlin
17 years
0.4
cmd2-git-0.4.tar.gz
Catherine Devlin
17 years
0.3.7
cmd2-git-0.3.7.tar.gz
Catherine Devlin
17 years
0.3.6
cmd2-git-0.3.6.tar.gz
Catherine Devlin
17 years
0.3.5
cmd2-git-0.3.5.tar.gz
Catherine Devlin
17 years
0.3.4.1
cmd2-git-0.3.4.1.tar.gz
Catherine Devlin
17 years
0.3.1
cmd2-git-0.3.1.tar.gz
Catherine Devlin
17 years