(self, path, dispatcher)
| 614 | self.encoding = encoding or 'utf-8' |
| 615 | |
| 616 | def add_dispatcher(self, path, dispatcher): |
| 617 | self.dispatchers[path] = dispatcher |
| 618 | return dispatcher |
| 619 | |
| 620 | def get_dispatcher(self, path): |
| 621 | return self.dispatchers[path] |
no outgoing calls