We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adbbdc8 commit b90a0c6Copy full SHA for b90a0c6
graalpython/lib-graalpython/_socket.py
@@ -51,10 +51,16 @@
51
error = OSError
52
__default_timeout = None
53
54
+
55
def getdefaulttimeout():
56
return __default_timeout
57
58
59
def setdefaulttimeout(timeout):
60
global __default_timeout
61
__default_timeout = timeout
62
63
64
+_sock = socket()
65
+SocketType = type(_sock)
66
+del _sock
0 commit comments