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

Method __init__

Lib/logging/handlers.py:1471–1477  ·  view source on GitHub ↗

Initialise an instance, using the passed queue.

(self, queue)

Source from the content-addressed store, hash-verified

1469 """
1470
1471 def __init__(self, queue):
1472 """
1473 Initialise an instance, using the passed queue.
1474 """
1475 logging.Handler.__init__(self)
1476 self.queue = queue
1477 self.listener = None # will be set to listener if configured via dictConfig()
1478
1479 def enqueue(self, record):
1480 """

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected