]> granicus.if.org Git - python/commitdiff
Merged revisions 80534 via svnmerge from
authorAntoine Pitrou <solipsis@pitrou.net>
Tue, 27 Apr 2010 13:15:18 +0000 (13:15 +0000)
committerAntoine Pitrou <solipsis@pitrou.net>
Tue, 27 Apr 2010 13:15:18 +0000 (13:15 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80534 | antoine.pitrou | 2010-04-27 15:13:26 +0200 (mar., 27 avril 2010) | 3 lines

  socket.error can really happen here, and fix a possible NameError
........

Lib/test/test_ssl.py

index a5af557513c252b540a45be8e11d91be04e309ab..5e659c24ea1ba1e7275046c0039eb9855b09d75d 100644 (file)
@@ -679,6 +679,9 @@ else:
             except ssl.SSLError as x:
                 if support.verbose:
                     sys.stdout.write("\nSSLError is %s\n" % x.args[1])
+            except socket.error as x:
+                if test_support.verbose:
+                    sys.stdout.write("\nsocket.error is %s\n" % x[1])
             else:
                 self.fail("Use of invalid cert should have failed!")
         finally: