1. 5eb6b39 support pep 3118 format strings for ctypes objects with nontrivial shapes (closes #10744) by Benjamin Peterson · 10 years ago
  2. fca2866 merge 3.3 (#20946) by Benjamin Peterson · 10 years ago
  3. fda3355 fix ctypes test alignment assumptions (closes #20946) by Benjamin Peterson · 10 years ago
  4. dfe98a1 Issue #20437: Fixed 22 potential bugs when deleting objects references. by Serhiy Storchaka · 10 years ago
  5. 505ff75 Issue #20437: Fixed 21 potential bugs when deleting objects references. by Serhiy Storchaka · 10 years ago
  6. fe5fff6 Issue #19936: Restored executable bits for several libffi files. by Serhiy Storchaka · 10 years ago
  7. 744135d Issue #19936: Restored executable bits for several libffi files. by Serhiy Storchaka · 10 years ago
  8. 8f8ec92 Issue #19936: Added executable bits or shebang lines to Python scripts which by Serhiy Storchaka · 10 years ago
  9. b992a0e Issue #19936: Added executable bits or shebang lines to Python scripts which by Serhiy Storchaka · 10 years ago
  10. bd306db silence unused-value warnings in libffi's dlmalloc.c by Christian Heimes · 11 years ago
  11. e106e5c Issue #19437: Fix error handling of PyCArrayType_new(), don't decreases the by Victor Stinner · 11 years ago
  12. 2399ad5 Issue #19437: Fix error handling of CDataType_from_buffer() by Victor Stinner · 11 years ago
  13. 61b976f Fix compilation error under gcc of the ctypes module bundled libffi for arm. by Gregory P. Smith · 11 years ago
  14. 7929a1d Fix compilation error under gcc of the ctypes module bundled libffi for arm. by Gregory P. Smith · 11 years ago
  15. 3b59011 Fix compiler warning on Windows 64 bit: _init_pos_args() result type is by Victor Stinner · 11 years ago
  16. e223439 Issue #19437: Fix ctypes, handle PyCData_GetContainer() and GetKeepedObjects() by Victor Stinner · 11 years ago
  17. 588544d Issue #19437: Fix GetKeepedObjects() of ctypes, handle PyCData_GetContainer() by Victor Stinner · 11 years ago
  18. 7184366 Issue #19437: Fix PyCData_GetContainer() of ctypes, handle PyDict_New() failure by Victor Stinner · 11 years ago
  19. bd303c1 Issue #19512, #19515: remove shared identifiers, move identifiers where they by Victor Stinner · 11 years ago
  20. 0905437 Issue #19512: add some common identifiers to only create common strings once, by Victor Stinner · 11 years ago
  21. e75996a Issue #19437: Fix PyCFuncPtrType constructor, handle by Victor Stinner · 11 years ago
  22. a215002 Issue #19437: Fix PyCArrayType constructor, raise MemoryError on PyMem_Malloc() by Victor Stinner · 11 years ago
  23. 6decccd Issue #19437: Fix Array_subscript() of ctypes, handle Array_item() failure by Victor Stinner · 11 years ago
  24. dd371b9 Issue #18408: Fix PyCStructUnionType_update_stgdict(), handle by Victor Stinner · 11 years ago
  25. 68f6adc Issue #18408: Fix _ctypes_alloc_format_string(), raise MemoryError on memory by Victor Stinner · 11 years ago
  26. 4d39700 Issue #19356: Avoid using a C variabled named "_self", it's a reserved word in some C compilers. by Antoine Pitrou · 11 years ago
  27. 09fcb72 Issue #19356: Avoid using a C variabled named "_self", it's a reserved word in some C compilers. by Antoine Pitrou · 11 years ago
  28. 782952b Re #18521: fix not-quite-C syntax that works only because the PyXXX_Check are macros defined with () around them. by Georg Brandl · 11 years ago
  29. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  30. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  31. 1d8e7db Issue #18178: Fix ctypes on BSD. dlmalloc.c was compiled twice which broke malloc weak symbols. by Christian Heimes · 11 years ago
  32. 9ff79f7 Issue #18178: Fix ctypes on BSD. dlmalloc.c was compiled twice which broke malloc weak symbols. by Christian Heimes · 11 years ago
  33. 8fa8ee3 Issue #18701: Remove support of old CPython versions (<3.0) from C code. by Serhiy Storchaka · 11 years ago
  34. d7bd7a5 Silence compiler warnings for strict function prototype declarations. by Raymond Hettinger · 11 years ago
  35. 28dc9b9 merge by Raymond Hettinger · 11 years ago
  36. 044c516 Issue #18609, #18408: _ctypes_add_traceback() now clears the current exception by Victor Stinner · 11 years ago
  37. f6e7e36 Issue #18561: Skip name in ctypes' _build_callargs() if name is NULL. CID 486199 by Christian Heimes · 11 years ago
  38. 6ca8a05 Issue #18561: Skip name in ctypes' _build_callargs() if name is NULL. CID 486199 by Christian Heimes · 11 years ago
  39. 5d7c1b1 merge for issue #18556 by Brett Cannon · 11 years ago
  40. 845f784 Issue #18556: Check the return value for PyUnicode_AsWideChar() in by Brett Cannon · 11 years ago
  41. 7194588 Issue #18514: Fix unreachable Py_DECREF() call in PyCData_FromBaseObj() by Christian Heimes · 11 years ago
  42. 8c4c1f6 Issue #18514: Fix unreachable Py_DECREF() call in PyCData_FromBaseObj() by Christian Heimes · 11 years ago
  43. abfc4d8 Fix fishy sizeof(Py_ssize_t *). by Christian Heimes · 11 years ago
  44. 5ea0f80 Make the GCC-4.8 compiler happy by moving declarations to the top of the function. by Raymond Hettinger · 11 years ago
  45. 3f15cf0 Issue #18408: Fix ConvParam() of the ctypes module to handle paramfunc failure by Victor Stinner · 11 years ago
  46. 15a7d2e merge 3.3 (#18248) by Benjamin Peterson · 11 years ago
  47. 19886b8 fix libffi build on AIX (closes #18248) by Benjamin Peterson · 11 years ago
  48. 262e7f3 fixed libffi on PPC without __NO_FPRS__ by Christian Heimes · 11 years ago
  49. 2f13f54 fixed libffi on PPC without __NO_FPRS__ by Christian Heimes · 11 years ago
  50. 360b89c Fix for r84195: add HAVE_ALLOCA_H to configure and only include alloca.h if it's available by Christian Heimes · 11 years ago
  51. f0400ba Fix for r84195: add HAVE_ALLOCA_H to configure and only include alloca.h if it's available by Christian Heimes · 11 years ago
  52. 8f0aae5 (Merge 3.3) ctypes: AIX needs an explicit #include <alloca.h> to get alloca() by Victor Stinner · 11 years ago
  53. 43b2639 ctypes: AIX needs an explicit #include <alloca.h> to get alloca() by Victor Stinner · 11 years ago
  54. d8fe1f7 * Fix remaining bits of issue 17192 for 3.4 - these changes by Gregory P. Smith · 11 years ago
  55. 5dc268e * Fix remaining bits of issue 17192 for 3.3 - these changes by Gregory P. Smith · 11 years ago
  56. 6897267 * Fix PART of issue 17192 for 3.4 - reapply the issue11729 patch by Gregory P. Smith · 11 years ago
  57. e9d0633 * Fix PART of issue 17192 for 3.3 - reapply the issue11729 patch by Gregory P. Smith · 11 years ago
  58. 9330597 * Fix issue 17192 for 3.2 - reapply the issue11729 patch that was undone by Gregory P. Smith · 11 years ago
  59. d6e9f32 Merge by Kristján Valur Jónsson · 11 years ago
  60. ece1222 Merge by Kristján Valur Jónsson · 11 years ago
  61. 23f854c Issue #10296: Merge to default by Kristján Valur Jónsson · 11 years ago
  62. a251b37 #10296: Merge to 3.3 by Kristján Valur Jónsson · 11 years ago
  63. c70e53a Fixes Issue #17192: Update the ctypes module's libffi to v3.0.13. This by Gregory P. Smith · 11 years ago
  64. 5aed330 Issue #10296 : Don't handle BreakPoint exceptions using by Kristján Valur Jónsson · 11 years ago
  65. 0408bf9 Fixes Issue #17192: Update the ctypes module's libffi to v3.0.13. This by Gregory P. Smith · 11 years ago
  66. 029273f Fixes issue #17192: Update the ctypes module's libffi to v3.0.13. This by Gregory P. Smith · 11 years ago
  67. 16c41d8 Merge 3.3, issue #17047: remove doubled words found in 2.7 to 3.4 by Terry Jan Reedy · 11 years ago
  68. 09b7503 Merge 3.2, Issue #17047: remove doubled words found in 2.7 to 3.4 by Terry Jan Reedy · 11 years ago
  69. 0158af3 Issue #17047: remove doubled words found in 2.7 to 3.4 Modules/*, by Terry Jan Reedy · 11 years ago
  70. ca83233 Fix formatting changes that led to compilation errors by Eli Bendersky · 11 years ago
  71. 3612da6 call_commethod was only used in samples/Windows, which no longer exists. by Eli Bendersky · 11 years ago
  72. d867bad Fix some formatting by Eli Bendersky · 11 years ago
  73. 38e2a2a - Issue #17192: Import libffi-3.0.12. by doko@ubuntu.com · 11 years ago
  74. b6a5340 Issue #6083: Fix multiple segmentation faults occured when PyArg_ParseTuple by Serhiy Storchaka · 11 years ago
  75. 1d0bb9c Issue #6083: Fix multiple segmentation faults occured when PyArg_ParseTuple by Serhiy Storchaka · 11 years ago
  76. 19c4e0d Issue #6083: Fix multiple segmentation faults occured when PyArg_ParseTuple by Serhiy Storchaka · 11 years ago
  77. 9101e23 Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 11 years ago
  78. 441d30f Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 11 years ago
  79. 31efb38 Merge 3.3. by Stefan Krah · 11 years ago
  80. 897c3e9 Issue #11729: Backport commit bff052d9 from libffi upstream in order to fix by Stefan Krah · 11 years ago
  81. 7898043 Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 11 years ago
  82. 1724bb1 Merge with 3.3 : Don't DECREF the ctypes error_object without the GIL held. by Kristjan Valur Jonsson · 12 years ago
  83. c51bafb Merge with 3.2 : Don't DECREF the ctypes error_object without the GIL held. by Kristjan Valur Jonsson · 12 years ago
  84. 3cbdaa3 Merge with 3.1 : Don't DECREF the ctypes error_object without the GIL held. by Kristjan Valur Jonsson · 12 years ago
  85. 9946bd6 Don't DECREF the ctypes error_object without the GIL held. by Kristjan Valur Jonsson · 12 years ago
  86. 2606a6f Issue #16719: Get rid of WindowsError. Use OSError instead by Andrew Svetlov · 12 years ago
  87. 18d105b merge 3.2 by Benjamin Peterson · 12 years ago
  88. 7eb8a1a remove dead code by Benjamin Peterson · 12 years ago
  89. 12f33df Issue #16628: Fix a memory leak in ctypes.resize(). by Antoine Pitrou · 12 years ago
  90. 305e1a7 Issue #16628: Fix a memory leak in ctypes.resize(). by Antoine Pitrou · 12 years ago
  91. cb460b9 Fix issue 13370: Ensure that ctypes works on Mac OS X when Python is by Ronald Oussoren · 12 years ago
  92. 2543756 Fix issue 13370: Ensure that ctypes works on Mac OS X when Python is compiled using the clang compiler by Ronald Oussoren · 12 years ago
  93. 7506dab Issue #6493: Fix handling of c_uint32 bitfields with width of 32 on Windows. by Meador Inge · 12 years ago
  94. 60c2266 Issue #6493: Fix handling of c_uint32 bitfields with width of 32 on Windows. by Meador Inge · 12 years ago
  95. d4ea23f - Issue #15194: check in the missing m4/ax_append_flag.m4 file. by doko@ubuntu.com · 12 years ago
  96. 49a7da3 - Issue #15194: check in the missing m4/ax_check_compile_flag.m4 file. by doko@ubuntu.com · 12 years ago
  97. cc5addd - Issue #14330: Don't derive the include and library search dirs by doko@ubuntu.com · 12 years ago
  98. 36f9805 - Regenerate the libffi configure file by doko@ubuntu.com · 12 years ago
  99. c02be61 - whitespace-normalize libffi file by Matthias Klose · 12 years ago
  100. 2a91876 - Issue #15194: Update libffi to the 3.0.11 release. by doko@ubuntu.com · 12 years ago