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

Method __init__

Lib/logging/handlers.py:1451–1457  ·  view source on GitHub ↗

Initialise an instance, using the passed queue.

(self, queue)

Source from the content-addressed store, hash-verified

1449 """
1450
1451 def __init__(self, queue):
1452 """
1453 Initialise an instance, using the passed queue.
1454 """
1455 logging.Handler.__init__(self)
1456 self.queue = queue
1457 self.listener = None # will be set to listener if configured via dictConfig()
1458
1459 def enqueue(self, record):
1460 """

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected