Get a handler with the specified *name*, or None if there isn't one with that name.
(name)
| 905 | |
| 906 | |
| 907 | def 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 | |
| 915 | def getHandlerNames(): |