summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Lin <anselor@gmail.com>2020-08-07 16:45:01 -0400
committerEric Lin <anselor@gmail.com>2020-08-07 16:50:14 -0400
commitdc94af322089e2fc2c1fb1be22e363e96061f2e8 (patch)
tree9502fe8847312fd3124cd9b81e3b1520233b3bb3
parent091a88efc63a60211a0d1addb73c35bf47e7cd69 (diff)
downloadcmd2-git-dc94af322089e2fc2c1fb1be22e363e96061f2e8.tar.gz
Minor housekeeping. Updated CODEOWNERS with recent additions
-rw-r--r--CODEOWNERS16
-rw-r--r--examples/modular_subcommands.py2
2 files changed, 15 insertions, 3 deletions
diff --git a/CODEOWNERS b/CODEOWNERS
index 01be734c..442e08d9 100644
--- a/CODEOWNERS
+++ b/CODEOWNERS
@@ -16,14 +16,19 @@
# cmd2 code
cmd2/__init__.py @tleonhardt @kotfu
cmd2/ansi.py @kmvanbrunt @tleonhardt
-cmd2/argparse_*.py @kmvanbrunt
+cmd2/argparse_*.py @kmvanbrunt @anselor
cmd2/clipboard.py @tleonhardt
cmd2/cmd2.py @tleonhardt @kmvanbrunt @kotfu
+cmd2/command_definition.py @anselor
cmd2/constants.py @kotfu
+cmd2/decorators.py @kotfu @kmvanbrunt @anselor
+cmd2/exceptions.py @kmvanbrunt @anselor
+cmd2/history.py @kotfu @tleonhardt
cmd2/parsing.py @kotfu @kmvanbrunt
cmd2/plugin.py @kotfu
-cmd2/pyscript_bridge.py @kmvanbrunt
+cmd2/py_bridge.py @kmvanbrunt
cmd2/rl_utils.py @kmvanbrunt
+cmd2/table_creator.py @kmvanbrunt
cmd2/transcript.py @kotfu
cmd2/utils.py @tleonhardt @kotfu @kmvanbrunt
@@ -34,6 +39,11 @@ docs/* @tleonhardt @kotfu
examples/async_printing.py @kmvanbrunt
examples/environment.py @kotfu
examples/tab_*.py @kmvanbrunt
+examples/modular_*.py @anselor
+examples/modular_commands/* @anselor
+
+plugins/template/* @kotfu
+plugins/ext_test/* @anselor
# Unit Tests
tests/pyscript/* @kmvanbrunt
@@ -47,6 +57,8 @@ tests/test_pars*.py @kotfu
tests/test_run_pyscript.py @kmvanbrunt
tests/test_transcript.py @kotfu
+tests_isolated/test_commandset/* @anselor
+
# Top-level project stuff
CONTRIBUTING.md @tleonhardt @kotfu
setup.py @tleonhardt @kotfu
diff --git a/examples/modular_subcommands.py b/examples/modular_subcommands.py
index 49620dfb..945fd54d 100644
--- a/examples/modular_subcommands.py
+++ b/examples/modular_subcommands.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
# coding=utf-8
-"""A simple example demonstracting modular subcommand loading through CommandSets
+"""A simple example demonstrating modular subcommand loading through CommandSets
In this example, there are loadable CommandSets defined. Each CommandSet has 1 subcommand defined that will be
attached to the 'cut' command.