MCPcopy Index your code
hub / github.com/RustPython/RustPython / __init__

Method __init__

Lib/test/test_ssl.py:2284–2292  ·  view source on GitHub ↗
(self, server, connsock, addr)

Source from the content-addressed store, hash-verified

2282 that we can test the STARTTLS functionality."""
2283
2284 def __init__(self, server, connsock, addr):
2285 self.server = server
2286 self.running = False
2287 self.sock = connsock
2288 self.addr = addr
2289 self.sock.setblocking(True)
2290 self.sslconn = None
2291 threading.Thread.__init__(self)
2292 self.daemon = True
2293
2294 def wrap_conn(self):
2295 try:

Callers

nothing calls this directly

Calls 2

setblockingMethod · 0.45
__init__Method · 0.45

Tested by

no test coverage detected