summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2016-11-19 14:46:49 -0500
committerPeter LaFosse <peter@vector35.com>2016-11-19 14:46:49 -0500
commit9ad395e9d45d18734f1afbf208c80bdafa6a7a3d (patch)
tree8b2594059abbb99a123efeeca8fdef08e6ba81c4 /python
parenta6842fc4209ed0bc160222ee61b2e6d9741dc9ef (diff)
Remove debuging code
Diffstat (limited to 'python')
-rw-r--r--python/__init__.py56
1 files changed, 24 insertions, 32 deletions
diff --git a/python/__init__.py b/python/__init__.py
index f38395c8..2a1139f9 100644
--- a/python/__init__.py
+++ b/python/__init__.py
@@ -18,39 +18,31 @@
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
-
-import sys
-
-
# Binary Ninja components
-try:
- import _binaryninjacore as core
- from databuffer import *
- from filemetadata import *
- from fileaccessor import *
- from binaryview import *
- from transform import *
- from architecture import *
- from basicblock import *
- from function import *
- from log import *
- from lowlevelil import *
- from bntype import *
- from functionrecognizer import *
- from update import *
- from plugin import *
- from callingconvention import *
- from platform import *
- from demangle import *
- from mainthread import *
- from interaction import *
- from lineardisassembly import *
- from undoaction import *
- from highlight import *
-except:
- x = open("/Users/peterl/path", "w")
- x.write(str(sys.exc_info()))
- x.close()
+import _binaryninjacore as core
+from databuffer import *
+from filemetadata import *
+from fileaccessor import *
+from binaryview import *
+from transform import *
+from architecture import *
+from basicblock import *
+from function import *
+from log import *
+from lowlevelil import *
+from bntype import *
+from functionrecognizer import *
+from update import *
+from plugin import *
+from callingconvention import *
+from platform import *
+from demangle import *
+from mainthread import *
+from interaction import *
+from lineardisassembly import *
+from undoaction import *
+from highlight import *
+
class _DestructionCallbackHandler(object):
def __init__(self):