diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2000-06-10 01:41:48 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2000-06-10 01:41:48 (GMT) |
commit | 7ad47923077691c2fd32a721fe9048fcf310878e (patch) | |
tree | 71531e3bc9dc052a9db1afe7473db6b469162d2f | |
parent | a251ea0680a45394801f9818611ef89d86e4ac5d (diff) | |
download | cpython-7ad47923077691c2fd32a721fe9048fcf310878e.zip cpython-7ad47923077691c2fd32a721fe9048fcf310878e.tar.gz cpython-7ad47923077691c2fd32a721fe9048fcf310878e.tar.bz2 |
Comment out an apparent debug print
-rw-r--r-- | Lib/urllib.py | 2 |
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 |