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

Method __init__

Lib/logging/handlers.py:1344–1350  ·  view source on GitHub ↗

Initialize the handler with the buffer size.

(self, capacity)

Source from the content-addressed store, hash-verified

1342 be flushed. If it should, then flush() is expected to do what's needed.
1343 """
1344 def __init__(self, capacity):
1345 """
1346 Initialize the handler with the buffer size.
1347 """
1348 logging.Handler.__init__(self)
1349 self.capacity = capacity
1350 self.buffer = []
1351
1352 def shouldFlush(self, record):
1353 """

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected