[Python-checkins] r81270 - in python/branches/py3k: Lib/urllib/request.py

florent.xicluna python-checkins at python.org
Mon May 17 19:24:07 CEST 2010


Author: florent.xicluna
Date: Mon May 17 19:24:07 2010
New Revision: 81270

Log:
Merged revision 81259 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81259 | florent.xicluna | 2010-05-17 12:39:07 +0200 (lun, 17 mai 2010) | 2 lines
  
  Slight style cleanup.
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Lib/urllib/request.py

Modified: python/branches/py3k/Lib/urllib/request.py
==============================================================================
--- python/branches/py3k/Lib/urllib/request.py	(original)
+++ python/branches/py3k/Lib/urllib/request.py	Mon May 17 19:24:07 2010
@@ -1965,7 +1965,7 @@
         else:
             return self.open(newurl, data)
 
-    def get_user_passwd(self, host, realm, clear_cache = 0):
+    def get_user_passwd(self, host, realm, clear_cache=0):
         key = realm + '@' + host.lower()
         if key in self.auth_cache:
             if clear_cache:


More information about the Python-checkins mailing list