diff options
Diffstat (limited to 'Lib/cmd.py')
-rw-r--r-- | Lib/cmd.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/cmd.py b/Lib/cmd.py index 366b0c95d80..508c4dedf74 100644 --- a/Lib/cmd.py +++ b/Lib/cmd.py @@ -52,6 +52,8 @@ class Cmd: misc_header = "Miscellaneous help topics:" undoc_header = "Undocumented commands:" + def __init__(self): pass + def cmdloop(self, intro=None): self.preloop() if intro != None: |