From 7bc817d5ba917528e8bd07ec461c635291e7b06a Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 17 Dec 1993 15:25:27 +0000 Subject: * Mass change: get rid of all init() methods, in favor of __init__() constructors. There is no backward compatibility. Not everything has been tested. * aiff.{py,doc}: deleted in favor of aifc.py (which contains its docs as comments) --- Lib/cmd.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'Lib/cmd.py') diff --git a/Lib/cmd.py b/Lib/cmd.py index c4a347d2a6..87ddcfa7e7 100644 --- a/Lib/cmd.py +++ b/Lib/cmd.py @@ -13,9 +13,6 @@ class Cmd: self.prompt = PROMPT self.identchars = IDENTCHARS self.lastcmd = '' - - def init(self): # BW compat only - return self def cmdloop(self): stop = None -- cgit v1.2.1