From 7ad47923077691c2fd32a721fe9048fcf310878e Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Sat, 10 Jun 2000 01:41:48 +0000 Subject: [PATCH] Comment out an apparent debug print --- Lib/urllib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/urllib.py b/Lib/urllib.py index c96dd64b978..9400757db6a 100644 --- a/Lib/urllib.py +++ b/Lib/urllib.py @@ -313,7 +313,7 @@ class URLopener: user_passwd, realhost = splituser(realhost) if user_passwd: selector = "%s://%s%s" % (urltype, realhost, rest) - print "proxy via https:", host, selector + #print "proxy via https:", host, selector if not host: raise IOError, ('https error', 'no host given') if user_passwd: import base64