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

Function getHandlerByName

Lib/logging/__init__.py:907–912  ·  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

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

Callers

nothing calls this directly

Calls 1

getMethod · 0.45

Tested by

no test coverage detected