Get a handler with the specified *name*, or None if there isn't one with that name.
(name)
| 908 | |
| 909 | |
| 910 | def 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 | |
| 918 | def getHandlerNames(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…