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

Function getHandlerByName

Lib/logging/__init__.py:910–915  ·  view source on GitHub ↗

Get a handler with the specified *name*, or None if there isn't one with that name.

(name)

Source from the content-addressed store, hash-verified

908
909
910def getHandlerByName(name):
911 """
912 Get a handler with the specified *name*, or None if there isn't one with
913 that name.
914 """
915 return _handlers.get(name)
916
917
918def getHandlerNames():

Callers

nothing calls this directly

Calls 1

getMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…