MCPcopy Index your code
hub / github.com/python/cpython / __init__

Method __init__

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

Source from the content-addressed store, hash-verified

2561 that we can test the STARTTLS functionality."""
2562
2563 def __init__(self, server, connsock, addr):
2564 self.server = server
2565 self.running = False
2566 self.sock = connsock
2567 self.addr = addr
2568 self.sock.setblocking(True)
2569 self.sslconn = None
2570 threading.Thread.__init__(self)
2571 self.daemon = True
2572
2573 def wrap_conn(self):
2574 try:

Callers

nothing calls this directly

Calls 2

setblockingMethod · 0.45
__init__Method · 0.45

Tested by

no test coverage detected