From 5ef74b8f8edbebe22d0b86c85f08b0c618d808f7 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 23 Jun 1993 11:55:24 +0000 Subject: pdb.py, bdb.py, cmd.py: use __init__() instead of init() --- Lib/cmd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/cmd.py') diff --git a/Lib/cmd.py b/Lib/cmd.py index 7c512def60..c4a347d2a6 100644 --- a/Lib/cmd.py +++ b/Lib/cmd.py @@ -14,7 +14,7 @@ class Cmd: self.identchars = IDENTCHARS self.lastcmd = '' - def init(self): + def init(self): # BW compat only return self def cmdloop(self): -- cgit v1.2.1