summaryrefslogtreecommitdiffstats
path: root/Lib/urllib.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2000-06-10 01:41:48 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2000-06-10 01:41:48 (GMT)
commit7ad47923077691c2fd32a721fe9048fcf310878e (patch)
tree71531e3bc9dc052a9db1afe7473db6b469162d2f /Lib/urllib.py
parenta251ea0680a45394801f9818611ef89d86e4ac5d (diff)
downloadcpython-7ad47923077691c2fd32a721fe9048fcf310878e.zip
cpython-7ad47923077691c2fd32a721fe9048fcf310878e.tar.gz
cpython-7ad47923077691c2fd32a721fe9048fcf310878e.tar.bz2
Comment out an apparent debug print
Diffstat (limited to 'Lib/urllib.py')
-rw-r--r--Lib/urllib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/urllib.py b/Lib/urllib.py
index c96dd64..9400757 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