diff options
author | kotfu <kotfu@kotfu.net> | 2018-04-16 23:21:59 -0600 |
---|---|---|
committer | kotfu <kotfu@kotfu.net> | 2018-04-16 23:21:59 -0600 |
commit | 46ebe95304de710145ded8caf421c6b6950dba6d (patch) | |
tree | 455eb1da1b0a3f8794fb4fccd092b541b1949a0a /cmd2/__init__.py | |
parent | 49f02121cbe01de1c8203a15e22ab928b37b8971 (diff) | |
download | cmd2-git-46ebe95304de710145ded8caf421c6b6950dba6d.tar.gz |
Basic structure for cmd2 as a package
Diffstat (limited to 'cmd2/__init__.py')
-rw-r--r-- | cmd2/__init__.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cmd2/__init__.py b/cmd2/__init__.py new file mode 100644 index 00000000..fe3747e0 --- /dev/null +++ b/cmd2/__init__.py @@ -0,0 +1,6 @@ +# +# -*- coding: utf-8 -*- +# +from .cmd2 import Cmd, Cmd2TestCase, set_posix_shlex, set_strip_quotes, AddSubmenu +from .cmd2 import can_clip, with_category, categorize +from .cmd2 import with_argument_list, with_argparser, with_argparser_and_unknown_args |