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

Method __init__

Lib/logging/config.py:1011–1018  ·  view source on GitHub ↗
(self, host='localhost', port=DEFAULT_LOGGING_CONFIG_PORT,
                     handler=None, ready=None, verify=None)

Source from the content-addressed store, hash-verified

1009 allow_reuse_address = 1
1010
1011 def __init__(self, host='localhost', port=DEFAULT_LOGGING_CONFIG_PORT,
1012 handler=None, ready=None, verify=None):
1013 ThreadingTCPServer.__init__(self, (host, port), handler)
1014 with logging._lock:
1015 self.abort = 0
1016 self.timeout = 1
1017 self.ready = ready
1018 self.verify = verify
1019
1020 def serve_until_stopped(self):
1021 import select

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected