From: Skip Montanaro Date: Sat, 26 Jun 2004 19:42:10 +0000 (+0000) Subject: remove debugging print X-Git-Tag: v2.4a1~123 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5fad8bd08874e03d3a60eb8dac7c6fda8d2c268f;p=thirdparty%2FPython%2Fcpython.git remove debugging print --- diff --git a/Lib/smtpd.py b/Lib/smtpd.py index 6f46c97ed993..ef38cc2b078d 100755 --- a/Lib/smtpd.py +++ b/Lib/smtpd.py @@ -540,7 +540,6 @@ if __name__ == '__main__': classname = classname[lastdot+1:] else: import __main__ as mod - print mod.__name__, dir(mod) class_ = getattr(mod, classname) proxy = class_((options.localhost, options.localport), (options.remotehost, options.remoteport))