From a5f2a64de52dfa1772cd8de0886292964fe32236 Mon Sep 17 00:00:00 2001 From: feliam Date: Wed, 9 Mar 2016 18:27:59 -0300 Subject: [PATCH] -spaces- --- bindings/python/unicorn/unicorn.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bindings/python/unicorn/unicorn.py b/bindings/python/unicorn/unicorn.py index 28ba7e77..01cbff13 100644 --- a/bindings/python/unicorn/unicorn.py +++ b/bindings/python/unicorn/unicorn.py @@ -156,7 +156,6 @@ def uc_arch_supported(query): return _uc.uc_arch_supported(query) - class uc_x86_mmr(ctypes.Structure): '''Memory-Management Register for instructions IDTR, GDTR, LDTR, TR.''' _fields_ = [ @@ -166,6 +165,7 @@ class uc_x86_mmr(ctypes.Structure): ("flags", ctypes.c_uint32), # not used by GDTR and IDTR ] + class uc_x86_float80(ctypes.Structure): '''Float80''' _fields_ = [ @@ -173,6 +173,7 @@ class uc_x86_float80(ctypes.Structure): ("exponent", ctypes.c_uint16), ] + class Uc(object): def __init__(self, arch, mode): # verify version compatibility with the core before doing anything