blob: 6cb136cf413b5c7e3cd45a20886af9555f1df700 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# -*- coding: UTF-8 -*-
# This file’s existence lets Python know that the current directory is a package
# (a directory containing related modules).
#
# “Cmd2. Now with more module™.”
# Allow `from cmd2 import *` to be used efficiently if desired.
#
# @see
# http://docs.python.org/tutorial/modules.html#importing-from-a-package
#
__all__ = ['cmd2','commands','errors','support','tests']
__pacakge__='cmd2'
|