Sha256: e7f596f6c3fb3a7495bec0e268b2d91eb52294f280942b08d7822ed2095adcf3
Contents?: true
Size: 677 Bytes
Versions: 30
Compression:
Stored size: 677 Bytes
Contents
# Test just the SSL support in the socket module, in a moderately bogus way. import test_support # Optionally test SSL support. This currently requires the 'network' resource # as given on the regrtest command line. If not available, nothing after this # line will be executed. test_support.requires('network') import socket if not hasattr(socket, "ssl"): raise test_support.TestSkipped("socket module has no ssl support") import urllib socket.RAND_status() try: socket.RAND_egd(1) except TypeError: pass else: print "didn't raise TypeError" socket.RAND_add("this is a random string", 75.0) f = urllib.urlopen('https://sf.net') buf = f.read() f.close()
Version data entries
30 entries across 30 versions & 1 rubygems