diff options
Diffstat (limited to 'Lib/cmd.py')
-rw-r--r-- | Lib/cmd.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -37,6 +37,8 @@ they automatically support Emacs-like command history and editing features. import string +__all__ = ["Cmd"] + PROMPT = '(Cmd) ' IDENTCHARS = string.letters + string.digits + '_' |