in tsqa/endpoint.py [0:0]
def remove_handler(self, path):
'''
remove a handler attached to a specific path
'''
path = self.normalize_path(path)
if path not in self._handlers:
raise Exception()
del self._handlers[path]