| 700 | rpc_paths = [] |
| 701 | |
| 702 | class BrokenDispatcher: |
| 703 | def _marshaled_dispatch(self, data, dispatch_method=None, path=None): |
| 704 | raise RuntimeError("broken dispatcher") |
| 705 | |
| 706 | serv = MyXMLRPCServer(("localhost", 0), MyRequestHandler, |
| 707 | logRequests=False, bind_and_activate=False) |
no outgoing calls
searching dependent graphs…