From 1f9e383c1ca604422aafe6635561454022eb297f Mon Sep 17 00:00:00 2001 From: Nguyen Anh Quynh Date: Wed, 27 Jul 2016 00:27:49 +0800 Subject: [PATCH] python: cleanup --- bindings/python/sample_asm_count.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/bindings/python/sample_asm_count.py b/bindings/python/sample_asm_count.py index 4950a67c..387bc399 100755 --- a/bindings/python/sample_asm_count.py +++ b/bindings/python/sample_asm_count.py @@ -6,7 +6,6 @@ # This shows how to get out of KsError the number of # assembly instructions successfully compiled when error occur - from keystone import * CODE = b"INC ecx; yyy; DEC edx" # input assembly with an invalid instruction @@ -23,7 +22,3 @@ if count is not None: # print out the number of instructions succesfully compiled print("asmcount = %u" %e.get_asm_count()) - - - -