1. e14556a python: generator yields nothing rather than [] on failure by Nguyen Anh Quynh · 11 years ago
  2. 377bced python: correct comment on default value of @detail by Nguyen Anh Quynh · 11 years ago
  3. 92f8296 python: turn off detail by default, and raise CS_ERR_DETAIL when detail is OFF by Nguyen Anh Quynh · 11 years ago
  4. 4c009c7 python: instructions on installing Cython as dependency by Nguyen Anh Quynh · 11 years ago
  5. d35416a python: add instructions on Cython-based binding to README by Nguyen Anh Quynh · 11 years ago
  6. 5dba289 python: revert the directory name change, so rename 'cython' back to 'pyx' by Nguyen Anh Quynh · 11 years ago
  7. f042e57 python: rename pyx/ to cython/ by Nguyen Anh Quynh · 11 years ago
  8. b49f80d python: make install is the preferred way to install python binding by Nguyen Anh Quynh · 11 years ago
  9. 71fe283 python: make clean should not remove everything in pyx/ by Nguyen Anh Quynh · 11 years ago
  10. 58a3e3e python: cleanup setup*.py by Nguyen Anh Quynh · 11 years ago
  11. f7f15a8 python: cleaning pkg directory before installing by Nguyen Anh Quynh · 11 years ago
  12. 7e0c2cd python: add compile_args for cython by Nguyen Anh Quynh · 11 years ago
  13. b3923cf python: copying code from capstone/ to pyx/ rather than duplicating code by Nguyen Anh Quynh · 11 years ago
  14. 6b8445b python: proper support for cython by Nguyen Anh Quynh · 11 years ago
  15. 8212470 python: another fix for cython by Nguyen Anh Quynh · 11 years ago
  16. 4c259d4 python: temporary fix for cython by Nguyen Anh Quynh · 11 years ago
  17. 99d365f python: cython support - thanks to Tan Sheng Di for helps by Nguyen Anh Quynh · 11 years ago
  18. 2bb6bdb python: CsInsn's errno() method is missing self argument by Nguyen Anh Quynh · 11 years ago
  19. fc4bc12 python: correct CS_OPT_SYNTAX_NOREGNAME & add 1 more test to test.py. issue reported by Dang Hoang Vu by Nguyen Anh Quynh · 11 years ago
  20. 646ca6b python: add missing PPC support to the last commit by Nguyen Anh Quynh · 11 years ago
  21. 02874e6 Shorten python code for getting detail info by danghvu · 11 years ago
  22. c263d35 correct comments on CS_OPT_ON/OFF regarding default detail option by Nguyen Anh Quynh · 11 years ago
  23. 428fdcd python: update following the change to detail mode in the core by Nguyen Anh Quynh · 11 years ago
  24. 2ba53f5 python: avoid copying data inside CsInsn by saving raw information and use getters. Idea of Dang Hoang Vu by Nguyen Anh Quynh · 11 years ago
  25. bc97e6c bump package version to 2.0 by Nguyen Anh Quynh · 11 years ago
  26. 1acfd0b move insn_cache into cs_struct to gurantee thread-safe by Nguyen Anh Quynh · 11 years ago
  27. fa02175 python: delete redundant .gitignore by Nguyen Anh Quynh · 11 years ago
  28. 61e572b python: update to support PPC by Nguyen Anh Quynh · 11 years ago
  29. c476765 Update java binding for PPC arch by danghvu · 11 years ago
  30. 5cd6b34 python: add PPC test to test.py & test_detail.py by Nguyen Anh Quynh · 11 years ago
  31. f1d489b ppc: support details information by Nguyen Anh Quynh · 11 years ago
  32. 34f9638 add new API: cs_strerror() return a string describing a given error code. this should be used together with cs_errno() by Nguyen Anh Quynh · 11 years ago
  33. 5f1f90c fix for the last commit, and make the test code no longer specify ppc code as 64bit by Nguyen Anh Quynh · 11 years ago
  34. e06b2d0 python: simplify access to operand's information thanks to some getters for <ARCH>Ops classes by Nguyen Anh Quynh · 11 years ago
  35. ef709f0 python: cs_disasm*() now use generator rather than a list to return disassembled instructions. suggested by Mario Vilas. by Nguyen Anh Quynh · 11 years ago
  36. f2d0ff2 python: add PPC sample to test.py by Nguyen Anh Quynh · 11 years ago
  37. 4d22779 add the missing include/ppc.h by Nguyen Anh Quynh · 11 years ago
  38. 42c6b1a initial support for PPC by Nguyen Anh Quynh · 11 years ago
  39. 82fe8ff python: update binding following the changes to cs_version() by Nguyen Anh Quynh · 11 years ago
  40. 496a62b python: update to new API cs_disasm_ex() by Nguyen Anh Quynh · 11 years ago
  41. 3a87fb9 python: minor fix for comments of _dummy_cs class by Nguyen Anh Quynh · 11 years ago
  42. 3cbb230 python: keep referencing Cs class so make sure it is around until all CsInsn objects are deleted. bug reported by felixwilhelm by Nguyen Anh Quynh · 11 years ago
  43. 9ac9fcf python: support newly added API cs_support() & cs_version_ex() by Nguyen Anh Quynh · 11 years ago
  44. e76eae2 python: fix for README to keep lines within 80 columns for readability by Nguyen Anh Quynh · 11 years ago
  45. 6eae731 Merge branch 'master' of https://github.com/0xKD/capstone into pkgconfig by Nguyen Anh Quynh · 11 years ago
  46. 7008356 change cs_insn struct to follow the commit 18103e4a. fixed Python & Java bindings accordingly. attn: bindings by Nguyen Anh Quynh · 11 years ago
  47. 6b7b7d9 Make instruction distinction clearer by Kedar · 11 years ago
  48. 5f0c686 python: correct the last commit to fix cs_disasm_quick() by Nguyen Anh Quynh · 11 years ago
  49. edf1091 Update README for Windows install by Kedar · 11 years ago
  50. e71abd4 python: cs_disasm_quick() doesnt create CsInsn array on return, and makes reference to non-existent self. bug reported by Mario Vilas by Nguyen Anh Quynh · 11 years ago
  51. 1bdb23a add CS_OPT_MODE option. this allows us to change engine's mode at run-time by Nguyen Anh Quynh · 11 years ago
  52. d06e2f5 arm: expose alias registers SB, SL, FP & IP. attn: bindings by Nguyen Anh Quynh · 11 years ago
  53. 315930d python: correct DLL file for dynamic loading when module is imported by Nguyen Anh Quynh · 11 years ago
  54. fa0639b python: clean setup.py by Nguyen Anh Quynh · 11 years ago
  55. 572afee python: code style: replace tab with 4 spaces by Nguyen Anh Quynh · 11 years ago
  56. 29d138f python: rename some public python classes to follow python naming convention by Nguyen Anh Quynh · 11 years ago
  57. 7957ed1 arm64: add some alias registers. attn: bindings by Nguyen Anh Quynh · 11 years ago
  58. 4994c58 bindings: support new 'detail' option for java & python by Nguyen Anh Quynh · 11 years ago
  59. ad89d25 mips: optimize Mips_map_register() to O(1). suggested by Pancake by Nguyen Anh Quynh · 11 years ago
  60. 66f6c22 mips: fix NEGU alias instruction. bug reported by Pancake by Nguyen Anh Quynh · 11 years ago
  61. aa036ee bindings: add cs_version() back for python & java by Nguyen Anh Quynh · 11 years ago
  62. 67fd143 python: remove useless __init__.py by Nguyen Anh Quynh · 11 years ago
  63. 98bc9c3 bindings: update java & python follow last API change by Nguyen Anh Quynh · 11 years ago
  64. 3ff4ccb bindings: update python & java following mips core engine by Nguyen Anh Quynh · 11 years ago
  65. bac111c bindings: update python & java following arm64 update by Nguyen Anh Quynh · 11 years ago
  66. dcde7e7 python: replace op_index() with op_find(), which straightly returns the desired operand rather than its cumbersome index by Nguyen Anh Quynh · 11 years ago
  67. f1618bc python: add error message to CsError and modify all tests to use CsError exception by Nguyen Anh Quynh · 11 years ago
  68. 73a6dba python: commented out the printout of @bytes, so 'make tests' doesnt complain anymore by Nguyen Anh Quynh · 11 years ago
  69. db048ab python: reimplement cs_op_count(), cs_op_index() & cs_insn_group() in python, so no need to save instruction raw data anymore by Nguyen Anh Quynh · 11 years ago
  70. cdf41b0 python: delete dead code by Nguyen Anh Quynh · 11 years ago
  71. e099ede Fix Python bindings: by Nguyen Anh Quynh · 11 years ago
  72. 520c361 rename python classes and using exception for error by Nguyen Anh Quynh · 11 years ago
  73. 74d95ab python: minor fix for setup.py by Nguyen Anh Quynh · 11 years ago
  74. 4649071 python: add ERR_OPTION, and use @syntax setter/getter rather than option() method to set X86 syntax by Nguyen Anh Quynh · 11 years ago
  75. d912f91 add a newline between constant types in autogen constants by Nguyen Anh Quynh · 11 years ago
  76. a2f825f support comments in autogen files, so constant files are more friendly by Nguyen Anh Quynh · 11 years ago
  77. 8f13f3c rename @hex_code to @bytes, and move it to next to @size by Nguyen Anh Quynh · 11 years ago
  78. c45b158 Merge branch 'master' of https://github.com/joxeankoret/capstone into hexcode by Nguyen Anh Quynh · 11 years ago
  79. c9b6aa1 python: use c_char_p rather than POINTER(c_char) on prototype of cs_disasm_dyn() by Nguyen Anh Quynh · 11 years ago
  80. c389e00 python: wrong prototype for cs_close() causes mem leaking. bug reported by Joxean Koret by Nguyen Anh Quynh · 11 years ago
  81. b4b6fea Fix a bug const generator does not account for assigning number as enum const by danghvu · 11 years ago
  82. 367a4df Partially reverted previous commit by Joxean · 11 years ago
  83. 114df0e Added @hex_code member by Joxean · 11 years ago
  84. e60590b fix bindings to reflect the last commit by Nguyen Anh Quynh · 11 years ago
  85. ea5b79d move some alias registers around to after REG_MAX. this seems to fix some issues of clang, which struggles with enum that assign value from other enum by Nguyen Anh Quynh · 11 years ago
  86. b39ef0b arm: added some alias registers by Nguyen Anh Quynh · 11 years ago
  87. c3a0a2c python: fix a memory leaking in cs_disasm_quick(). bug reported by Joxean Koret by Nguyen Anh Quynh · 11 years ago
  88. da8adad API cs_option(): @value now has size_t, so mapping opaque pointer is possible for future options by Nguyen Anh Quynh · 11 years ago
  89. c618db4 change option names for cs_option(), and update python binding accordingly to support new cs_option() by Nguyen Anh Quynh · 11 years ago
  90. daaed13 python: update to the newly added cs_option() API by Nguyen Anh Quynh · 11 years ago
  91. 88db228 bindings: do not delete constant files when on clean target of Makefile by Nguyen Anh Quynh · 11 years ago
  92. 75c4475 bindings: auto generate constants with 'make' by Nguyen Anh Quynh · 11 years ago
  93. 923d926 python: update to reflect latest API change by Nguyen Anh Quynh · 11 years ago
  94. 8eb689e python: update to reflect the last API change by Nguyen Anh Quynh · 11 years ago
  95. 25f5612 bindings: correct autogen constant files to reflect the change on arm64.h by Nguyen Anh Quynh · 11 years ago
  96. b2ed4dc update COMPILE and python README to reflect the last commit by Nguyen Anh Quynh · 11 years ago
  97. f459708 bindings: add all autogen files. better to do this by committers, not users. thanks to this, users dont need to generate those constants themselves by Nguyen Anh Quynh · 11 years ago
  98. e75f906 python: update README by Nguyen Anh Quynh · 11 years ago
  99. 210e94d python: add install target to Makefile by Nguyen Anh Quynh · 11 years ago
  100. 96a056d bindings: more flexible autogen on generating filenames containing constants by Nguyen Anh Quynh · 11 years ago