Merged revisions 81636 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81636 | senthil.kumaran | 2010-06-01 18:10:07 +0530 (Tue, 01 Jun 2010) | 3 lines

  Fix Issue8797 - urllib2 basic authentication fix for wrong passwords. It fails after 5 retries.
........
This commit is contained in:
Senthil Kumaran 2010-06-01 12:53:48 +00:00
parent d35251dc19
commit f4998acb5a
2 changed files with 9 additions and 1 deletions

View file

@ -1151,7 +1151,6 @@ class HandlerTests(unittest.TestCase):
self.assertEqual(len(http_handler.requests), 1)
self.assertFalse(http_handler.requests[0].has_header(auth_header))
class MiscTests(unittest.TestCase):
def test_build_opener(self):