cmd2 2.6.0__tar.gz → 2.6.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {cmd2-2.6.0 → cmd2-2.6.2}/.pre-commit-config.yaml +1 -1
- {cmd2-2.6.0 → cmd2-2.6.2}/.prettierrc +2 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/CHANGELOG.md +668 -503
- {cmd2-2.6.0 → cmd2-2.6.2}/LICENSE +1 -1
- {cmd2-2.6.0 → cmd2-2.6.2}/MANIFEST.in +3 -4
- {cmd2-2.6.0 → cmd2-2.6.2}/Makefile +1 -1
- {cmd2-2.6.0 → cmd2-2.6.2}/PKG-INFO +45 -37
- {cmd2-2.6.0 → cmd2-2.6.2}/README.md +42 -35
- {cmd2-2.6.0 → cmd2-2.6.2}/cmd2/cmd2.py +71 -59
- {cmd2-2.6.0 → cmd2-2.6.2}/cmd2/decorators.py +8 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/cmd2/utils.py +30 -23
- {cmd2-2.6.0 → cmd2-2.6.2}/cmd2.egg-info/PKG-INFO +45 -37
- {cmd2-2.6.0 → cmd2-2.6.2}/cmd2.egg-info/SOURCES.txt +2 -107
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/api/index.md +13 -5
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/doc_conventions.md +24 -10
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/examples/alternate_event_loops.md +17 -6
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/examples/first_app.md +89 -29
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/features/argument_processing.md +68 -26
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/features/builtin_commands.md +37 -15
- cmd2-2.6.2/docs/features/clipboard.md +41 -0
- cmd2-2.6.2/docs/features/commands.md +204 -0
- cmd2-2.6.2/docs/features/completion.md +134 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/features/disable_commands.md +23 -8
- cmd2-2.6.2/docs/features/embedded_python_shells.md +85 -0
- cmd2-2.6.2/docs/features/generating_output.md +141 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/features/help.md +27 -9
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/features/history.md +91 -30
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/features/hooks.md +119 -44
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/features/misc.md +20 -13
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/features/modular_commands.md +64 -20
- cmd2-2.6.2/docs/features/multiline_commands.md +29 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/features/os.md +46 -18
- cmd2-2.6.2/docs/features/packaging.md +58 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/features/plugins.md +38 -15
- cmd2-2.6.2/docs/features/prompt.md +53 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/features/redirection.md +12 -5
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/features/scripting.md +83 -26
- cmd2-2.6.2/docs/features/settings.md +154 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/features/shortcuts_aliases_macros.md +24 -10
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/features/startup_commands.md +18 -7
- cmd2-2.6.2/docs/features/table_creation.md +33 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/features/transcripts.md +37 -14
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/index.md +4 -2
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/javascripts/readthedocs.js +1 -3
- cmd2-2.6.2/docs/migrating/incompatibilities.md +46 -0
- cmd2-2.6.2/docs/migrating/index.md +13 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/migrating/minimum.md +8 -3
- cmd2-2.6.2/docs/migrating/next_steps.md +45 -0
- cmd2-2.6.2/docs/migrating/why.md +55 -0
- cmd2-2.6.2/docs/overview/alternatives.md +41 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/overview/index.md +10 -5
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/overview/installation.md +28 -22
- cmd2-2.6.2/docs/overview/integrating.md +27 -0
- cmd2-2.6.2/docs/overview/resources.md +11 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/plugins/external_test.md +15 -3
- cmd2-2.6.2/docs/stylesheets/cmd2.css +4 -0
- cmd2-2.6.2/docs/testing.md +52 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/README.md +45 -21
- {cmd2-2.6.0 → cmd2-2.6.2}/mkdocs.yml +4 -1
- {cmd2-2.6.0 → cmd2-2.6.2}/plugins/ext_test/CHANGELOG.md +2 -2
- {cmd2-2.6.0 → cmd2-2.6.2}/plugins/ext_test/README.md +9 -9
- {cmd2-2.6.0 → cmd2-2.6.2}/plugins/template/CHANGELOG.md +2 -2
- {cmd2-2.6.0 → cmd2-2.6.2}/plugins/template/README.md +82 -98
- {cmd2-2.6.0 → cmd2-2.6.2}/pyproject.toml +39 -61
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/test_argparse.py +6 -0
- cmd2-2.6.2/tests/test_future_annotations.py +22 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/test_utils.py +41 -0
- cmd2-2.6.0/.readthedocs.yaml +0 -26
- cmd2-2.6.0/Pipfile +0 -33
- cmd2-2.6.0/docs/features/clipboard.md +0 -27
- cmd2-2.6.0/docs/features/commands.md +0 -155
- cmd2-2.6.0/docs/features/completion.md +0 -85
- cmd2-2.6.0/docs/features/embedded_python_shells.md +0 -61
- cmd2-2.6.0/docs/features/generating_output.md +0 -93
- cmd2-2.6.0/docs/features/multiline_commands.md +0 -17
- cmd2-2.6.0/docs/features/packaging.md +0 -38
- cmd2-2.6.0/docs/features/prompt.md +0 -33
- cmd2-2.6.0/docs/features/settings.md +0 -118
- cmd2-2.6.0/docs/features/table_creation.md +0 -17
- cmd2-2.6.0/docs/migrating/incompatibilities.md +0 -21
- cmd2-2.6.0/docs/migrating/index.md +0 -8
- cmd2-2.6.0/docs/migrating/next_steps.md +0 -25
- cmd2-2.6.0/docs/migrating/why.md +0 -30
- cmd2-2.6.0/docs/overview/alternatives.md +0 -16
- cmd2-2.6.0/docs/overview/integrating.md +0 -15
- cmd2-2.6.0/docs/overview/resources.md +0 -8
- cmd2-2.6.0/docs/testing.md +0 -39
- cmd2-2.6.0/examples/.mypy_cache/3.12/@plugins_snapshot.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/_ast.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/_ast.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/_codecs.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/_codecs.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/_collections_abc.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/_collections_abc.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/_typeshed/__init__.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/_typeshed/__init__.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/_typeshed/importlib.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/_typeshed/importlib.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/abc.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/abc.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/argparse.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/argparse.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/builtins.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/builtins.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/codecs.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/codecs.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/collections/__init__.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/collections/__init__.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/collections/abc.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/collections/abc.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/contextlib.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/contextlib.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/dataclasses.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/dataclasses.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/email/__init__.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/email/__init__.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/email/_policybase.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/email/_policybase.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/email/charset.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/email/charset.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/email/contentmanager.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/email/contentmanager.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/email/errors.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/email/errors.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/email/header.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/email/header.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/email/message.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/email/message.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/email/policy.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/email/policy.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/enum.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/enum.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/genericpath.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/genericpath.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/importlib/__init__.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/importlib/__init__.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/importlib/_abc.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/importlib/_abc.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/importlib/abc.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/importlib/abc.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/importlib/machinery.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/importlib/machinery.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/importlib/metadata/__init__.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/importlib/metadata/__init__.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/importlib/metadata/_meta.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/importlib/metadata/_meta.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/importlib/readers.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/importlib/readers.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/importlib/resources/__init__.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/importlib/resources/__init__.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/importlib/resources/abc.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/importlib/resources/abc.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/io.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/io.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/os/__init__.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/os/__init__.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/os/path.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/os/path.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/pathlib.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/pathlib.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/posixpath.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/posixpath.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/re.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/re.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/resource.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/resource.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/sre_compile.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/sre_compile.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/sre_constants.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/sre_constants.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/sre_parse.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/sre_parse.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/subprocess.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/subprocess.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/sys/__init__.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/sys/__init__.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/sys/_monitoring.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/sys/_monitoring.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/types.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/types.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/typing.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/typing.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/typing_extensions.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/typing_extensions.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/zipfile/__init__.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/zipfile/__init__.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/zipfile/_path.data.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/3.12/zipfile/_path.meta.json +0 -1
- cmd2-2.6.0/examples/.mypy_cache/CACHEDIR.TAG +0 -3
- cmd2-2.6.0/examples/cmd2_history.dat +0 -0
- cmd2-2.6.0/readme_files/shout_out.csv +0 -14
- cmd2-2.6.0/readme_files/shoutout.txt +0 -95
- {cmd2-2.6.0 → cmd2-2.6.2}/.prettierignore +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/cmd2/__init__.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/cmd2/ansi.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/cmd2/argparse_completer.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/cmd2/argparse_custom.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/cmd2/clipboard.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/cmd2/command_definition.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/cmd2/constants.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/cmd2/exceptions.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/cmd2/history.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/cmd2/parsing.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/cmd2/plugin.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/cmd2/py.typed +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/cmd2/py_bridge.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/cmd2/rl_utils.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/cmd2/table_creator.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/cmd2/transcript.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/cmd2.egg-info/dependency_links.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/cmd2.egg-info/requires.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/cmd2.egg-info/top_level.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/cmd2.png +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/codecov.yml +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/api/ansi.md +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/api/argparse_completer.md +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/api/argparse_custom.md +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/api/cmd.md +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/api/command_definition.md +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/api/constants.md +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/api/decorators.md +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/api/exceptions.md +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/api/history.md +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/api/parsing.md +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/api/plugin.md +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/api/py_bridge.md +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/api/table_creator.md +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/api/utils.md +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/examples/examples.md +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/examples/index.md +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/features/index.md +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/features/initialization.md +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/overrides/main.html +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/plugins/index.md +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/requirements.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/docs/stylesheets/readthedocs.css +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/.cmd2rc +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/alias_startup.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/arg_decorators.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/arg_print.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/argparse_completion.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/async_printing.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/basic.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/basic_completion.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/cmd_as_argument.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/colors.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/custom_parser.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/decorator_example.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/default_categories.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/dynamic_commands.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/environment.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/event_loops.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/example.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/exit_code.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/first_app.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/hello_cmd2.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/help_categories.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/hooks.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/initialization.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/migrating.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/modular_commands/__init__.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/modular_commands/commandset_basic.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/modular_commands/commandset_complex.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/modular_commands/commandset_custominit.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/modular_commands_basic.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/modular_commands_dynamic.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/modular_commands_main.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/modular_subcommands.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/override_parser.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/paged_output.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/persistent_history.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/pirate.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/pretty_print.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/python_scripting.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/read_input.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/remove_builtin_commands.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/remove_settable.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/scripts/arg_printer.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/scripts/conditional.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/scripts/nested.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/scripts/quit.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/scripts/save_help_text.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/scripts/script.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/scripts/script.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/subcommands.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/table_creation.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/tmux_launch.sh +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/tmux_split.sh +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/transcripts/exampleSession.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/transcripts/pirate.transcript +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/transcripts/quit.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/transcripts/transcript_regex.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/examples/unicode_commands.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/package.json +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/plugins/README.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/plugins/ext_test/build-pyenvs.sh +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/plugins/ext_test/cmd2_ext_test/__init__.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/plugins/ext_test/cmd2_ext_test/cmd2_ext_test.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/plugins/ext_test/cmd2_ext_test/py.typed +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/plugins/ext_test/cmd2_ext_test/pylintrc +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/plugins/ext_test/examples/example.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/plugins/ext_test/noxfile.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/plugins/ext_test/pyproject.toml +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/plugins/ext_test/setup.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/plugins/ext_test/tasks.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/plugins/ext_test/tests/__init__.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/plugins/ext_test/tests/pylintrc +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/plugins/ext_test/tests/test_ext_test.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/plugins/tasks.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/plugins/template/LICENSE +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/plugins/template/build-pyenvs.sh +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/plugins/template/cmd2_myplugin/__init__.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/plugins/template/cmd2_myplugin/myplugin.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/plugins/template/cmd2_myplugin/pylintrc +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/plugins/template/examples/example.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/plugins/template/noxfile.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/plugins/template/setup.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/plugins/template/tasks.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/plugins/template/tests/__init__.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/plugins/template/tests/pylintrc +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/plugins/template/tests/test_myplugin.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/setup.cfg +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tasks.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/.cmd2rc +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/__init__.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/conftest.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/pyscript/echo.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/pyscript/environment.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/pyscript/help.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/pyscript/py_locals.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/pyscript/pyscript_dir.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/pyscript/raises_exception.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/pyscript/recursive.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/pyscript/self_in_py.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/pyscript/stdout_capture.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/pyscript/stop.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/relative_multiple.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/script.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/script.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/scripts/binary.bin +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/scripts/empty.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/scripts/help.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/scripts/nested.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/scripts/one_down.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/scripts/postcmds.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/scripts/precmds.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/scripts/utf8.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/test_ansi.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/test_argparse_completer.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/test_argparse_custom.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/test_cmd2.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/test_completion.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/test_history.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/test_parsing.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/test_plugin.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/test_run_pyscript.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/test_table_creator.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/test_transcript.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/test_utils_defining_class.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/transcripts/bol_eol.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/transcripts/characterclass.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/transcripts/dotstar.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/transcripts/extension_notation.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/transcripts/failure.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/transcripts/from_cmdloop.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/transcripts/multiline_no_regex.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/transcripts/multiline_regex.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/transcripts/no_output.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/transcripts/no_output_last.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/transcripts/regex_set.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/transcripts/singleslash.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/transcripts/slashes_escaped.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/transcripts/slashslash.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/transcripts/spaces.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests/transcripts/word_boundaries.txt +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests_isolated/__init__.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests_isolated/test_commandset/__init__.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests_isolated/test_commandset/conftest.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests_isolated/test_commandset/test_argparse_subcommands.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests_isolated/test_commandset/test_categories.py +0 -0
- {cmd2-2.6.0 → cmd2-2.6.2}/tests_isolated/test_commandset/test_commandset.py +0 -0