[Python-checkins] CVS: python/dist/src/Lib urllib.py,1.94,1.95
A.M. Kuchling
python-dev@python.org
Fri, 9 Jun 2000 18:41:51 -0700
Update of /cvsroot/python/python/dist/src/Lib
In directory slayer.i.sourceforge.net:/tmp/cvs-serv9465
Modified Files:
urllib.py
Log Message:
Comment out an apparent debug print
Index: urllib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/urllib.py,v
retrieving revision 1.94
retrieving revision 1.95
diff -C2 -r1.94 -r1.95
*** urllib.py 2000年05月24日 13:21:46 1.94
--- urllib.py 2000年06月10日 01:41:48 1.95
***************
*** 314,318 ****
if user_passwd:
selector = "%s://%s%s" % (urltype, realhost, rest)
! print "proxy via https:", host, selector
if not host: raise IOError, ('https error', 'no host given')
if user_passwd:
--- 314,318 ----
if user_passwd:
selector = "%s://%s%s" % (urltype, realhost, rest)
! #print "proxy via https:", host, selector
if not host: raise IOError, ('https error', 'no host given')
if user_passwd: