summaryrefslogtreecommitdiff
path: root/Lib/cmd.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/cmd.py')
-rw-r--r--Lib/cmd.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/cmd.py b/Lib/cmd.py
index 7671573953..f2894a9413 100644
--- a/Lib/cmd.py
+++ b/Lib/cmd.py
@@ -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 + '_'