diff options
author | Skip Montanaro <skip@pobox.com> | 2004-06-26 19:42:10 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2004-06-26 19:42:10 (GMT) |
commit | 5fad8bd08874e03d3a60eb8dac7c6fda8d2c268f (patch) | |
tree | ecfdfc40ebf2b959bcad3073c03d12d45785e4a4 /Lib/smtpd.py | |
parent | 90e01539409c01649fab95122b61c023784d9a51 (diff) | |
download | cpython-5fad8bd08874e03d3a60eb8dac7c6fda8d2c268f.zip cpython-5fad8bd08874e03d3a60eb8dac7c6fda8d2c268f.tar.gz cpython-5fad8bd08874e03d3a60eb8dac7c6fda8d2c268f.tar.bz2 |
remove debugging print
Diffstat (limited to 'Lib/smtpd.py')
-rwxr-xr-x | Lib/smtpd.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/smtpd.py b/Lib/smtpd.py index 6f46c97..ef38cc2 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)) |