From 2a3450a59855366c8e08aeb4d7a5ecde723b01cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20Andr=C3=A9=20Vadla=20Ravn=C3=A5s?= Date: Sun, 5 Jan 2014 21:31:56 +0100 Subject: [PATCH] Add base implementation guard --- src/frida/core.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/frida/core.py b/src/frida/core.py index e51f284..e02db92 100644 --- a/src/frida/core.py +++ b/src/frida/core.py @@ -123,6 +123,9 @@ class FunctionContainer(object): return f return self._do_ensure_function(address) + def _do_ensure_function(self, address): + raise NotImplementedError("not implemented") + class Process(FunctionContainer): def __init__(self, session): super(Process, self).__init__()