Python: pump number of Mips operands to 10. see #1183
diff --git a/bindings/python/capstone/mips.py b/bindings/python/capstone/mips.py
index dd119e8..44513d2 100644
--- a/bindings/python/capstone/mips.py
+++ b/bindings/python/capstone/mips.py
@@ -40,7 +40,7 @@
 class CsMips(ctypes.Structure):
     _fields_ = (
         ('op_count', ctypes.c_uint8),
-        ('operands', MipsOp * 8),
+        ('operands', MipsOp * 10),
     )
 
 def get_arch_info(a):