1. 5f4b229d bpo-40792: Make the result of PyNumber_Index() always having exact type int. (GH-20443) by Serhiy Storchaka · 4 years, 3 months ago
  2. fe2978b bpo-39573: Convert Py_REFCNT and Py_SIZE to functions (GH-20429) by Victor Stinner · 4 years, 3 months ago
  3. 578c395 bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636) by Serhiy Storchaka · 4 years, 3 months ago
  4. d5d9a71 bpo-36346: array: Don't use deprecated APIs (GH-19653) by Inada Naoki · 4 years, 3 months ago
  5. 4a21e57 bpo-40268: Remove unused structmember.h includes (GH-19530) by Victor Stinner · 4 years, 4 months ago
  6. 702e09f bpo-39770, array module: Remove unnecessary descriptor counting (GH-18675) by Andy Lester · 4 years, 5 months ago
  7. 1b55b65 bpo-39573: Clean up modules and headers to use Py_IS_TYPE() function (GH-18521) by Dong-hee Na · 4 years, 6 months ago
  8. 60ac6ed bpo-39573: Use Py_SET_SIZE() function (GH-18402) by Victor Stinner · 4 years, 6 months ago
  9. d2ec81a bpo-39573: Add Py_SET_TYPE() function (GH-18394) by Victor Stinner · 4 years, 6 months ago
  10. 0131aba bpo-38916: array.array: remove fromstring() and tostring() (GH-17487) by Victor Stinner · 4 years, 8 months ago
  11. b44ffc8 bpo-38677: Fix arraymodule error handling in module initialization. (GH-17039) by Marco Paolini · 4 years, 9 months ago
  12. 06cd5b6 bpo-38465: Convert the type of exports counters to Py_ssize_t. (GH-16746) by Hai Shi · 4 years, 10 months ago
  13. 13ab570 Remove redundant check from arraymodule b_getitem (GH-14676) by Disconnect3d · 5 years ago
  14. 59ad110 bpo-37547: add _PyObject_CallMethodOneArg (GH-14685) by Jeroen Demeyer · 5 years ago
  15. 530f506 bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464) by Jeroen Demeyer · 5 years ago
  16. b82e17e bpo-36842: Implement PEP 578 (GH-12613) by Steve Dower · 5 years ago
  17. 14514d9 bpo-36946: Fix possible signed integer overflow when handling slices. (GH-13375) by Zackery Spytz · 5 years ago
  18. aa3ecb8 bpo-36285: Fix integer overflow in the array module. (GH-12317) by sth · 5 years ago
  19. 6a44f6e bpo-36048: Use __index__() instead of __int__() for implicit conversion if available. (GH-11952) by Serhiy Storchaka · 5 years ago
  20. afb3e71 bpo-35489: Use "const Py_UNICODE *" for the Py_UNICODE converter in AC. (GH-11150) by Serhiy Storchaka · 6 years ago
  21. bb86bf4 bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11047) by Serhiy Storchaka · 6 years ago
  22. 99d56b5 bpo-35441: Remove dead and buggy code related to PyList_SetItem(). (GH-11033) by Zackery Spytz · 6 years ago
  23. aa0735f bpo-32747: Remove trailing spaces in docstrings. (GH-5491) by oldk · 7 years ago
  24. f320be7 bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code (GH-5222) by Serhiy Storchaka · 7 years ago
  25. 56935a5 bpo-32020: arraymodule: Correct missing Py_DECREF in failure case of make_array() (#4391) by Mat M · 7 years ago
  26. b3a7796 bpo-27541: Reprs of subclasses of some classes now contain actual type name. (#3631) by Serhiy Storchaka · 7 years ago
  27. 7c17e23 bpo-24700: Add a fast path for comparing array.array of equal type (#3009) by Adrian Wielgosik · 7 years ago
  28. 6cca5c8 bpo-30592: Fixed error messages for some builtins. (#1996) by Serhiy Storchaka · 7 years ago
  29. a4095ef Change error message for array methods to use 'array' instead of 'list'. (#1853) by Jim Fasarakis-Hilliard · 7 years ago
  30. b879fe8 Expand the PySlice_GetIndicesEx macro. (#1023) by Serhiy Storchaka · 7 years ago
  31. a90e64b bpo-29932: Fix small error message typos in arraymodule.c (GH-888) by Sylvain · 7 years ago
  32. 964281a bpo-28298: make array 'Q', 'L' and 'I' accept big intables as elements (#570) by orenmn · 7 years ago
  33. 228b12e Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever by Serhiy Storchaka · 8 years ago
  34. 55ba38a Use _PyObject_CallMethodIdObjArgs() by Victor Stinner · 8 years ago
  35. 460bd0d Issue #19569: Compiler warnings are now emitted if use most of deprecated by Serhiy Storchaka · 8 years ago
  36. f051e43 Issue #28126: Replace Py_MEMCPY with memcpy(). Visual Studio can properly optimize memcpy(). by Christian Heimes · 8 years ago
  37. 1c748f3 Issue #27570: Merge null pointer fixes from 3.5 by Martin Panter · 8 years ago
  38. be8da9c Issue #27570: Avoid zero-length memcpy() calls with null source pointers by Martin Panter · 8 years ago
  39. af580df replace PY_LONG_LONG with long long by Benjamin Peterson · 8 years ago
  40. ed4aa83 require a long long data type (closes #27961) by Benjamin Peterson · 8 years ago
  41. 996d72b Issue #7063: Remove dead code from array slice handling by Martin Panter · 8 years ago
  42. 2954f83 - Issue #27332: Fixed the type of the first argument of module-level functions by Serhiy Storchaka · 8 years ago
  43. 1a2b24f Issue #27332: Fixed the type of the first argument of module-level functions by Serhiy Storchaka · 8 years ago
  44. 5ffdcad Fixed integer overflow in array.buffer_info(). by Serhiy Storchaka · 8 years ago
  45. 9e941d6 Fixed integer overflow in array.buffer_info(). by Serhiy Storchaka · 8 years ago
  46. 1ce738e Merge typo fixes from 3.5 by Martin Panter · 8 years ago
  47. 4c35964 Corrections for a/an in code comments and documentation by Martin Panter · 8 years ago
  48. ab0d198 Issue #26492: Exhausted iterator of array.array now conforms with the behavior by Serhiy Storchaka · 8 years ago
  49. 2d06e84 Issue #25923: Added the const qualifier to static constant arrays. by Serhiy Storchaka · 9 years ago
  50. 5c4064e Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size. by Serhiy Storchaka · 9 years ago
  51. d5cacbb PEP 489: Multi-phase extension module initialization by Nick Coghlan · 9 years ago
  52. 38337d1 Issue #24000: Improved Argument Clinic's mapping of converters to legacy by Larry Hastings · 9 years ago
  53. dbfdc38 Issue #24001: Argument Clinic converters now use accept={type} by Larry Hastings · 9 years ago
  54. 7f90cba Issue #23935: Argument Clinic's understanding of format units by Larry Hastings · 9 years ago
  55. 89964c4 Issue #23944: Argument Clinic now wraps long impl prototypes at column 78. by Larry Hastings · 9 years ago
  56. 04e6dba Fixed the array module broken in issue #23492. by Serhiy Storchaka · 9 years ago
  57. 1009bf1 Issue #23501: Argumen Clinic now generates code into separate files by default. by Serhiy Storchaka · 9 years ago
  58. 650c1e8 Issue #14203: Remove obsolete support for view==NULL in bytesiobuf_getbuffer() by Stefan Krah · 10 years ago
  59. 92bf919 Issue #22581: Use more "bytes-like object" throughout the docs and comments. by Serhiy Storchaka · 10 years ago
  60. b757c83 Issue #22581: Use more "bytes-like object" throughout the docs and comments. by Serhiy Storchaka · 10 years ago
  61. dfbeb16 Issue #22615: Argument Clinic now supports the "type" argument for the by Larry Hastings · 10 years ago
  62. 588dad0 merge 3.4 (closes #22605) by Benjamin Peterson · 10 years ago
  63. 682124c prevent passing NULL to memcpy (closes #22605) by Benjamin Peterson · 10 years ago
  64. 1eb32c2 Issue #20152: Port the array module to Argument Clinic. by Brett Cannon · 10 years ago
  65. 706768c Issue #22156: Fix some "comparison between signed and unsigned integers" by Victor Stinner · 10 years ago
  66. c5cc501 Make the various iterators' "setstate" sliently and consistently clip the by Kristján Valur Jónsson · 10 years ago
  67. 25dded0 Make the various iterators' "setstate" sliently and consistently clip the by Kristján Valur Jónsson · 10 years ago
  68. 9730e33 Issue #3693: Fix array obscure error message when given a str. by Alexandre Vassalotti · 11 years ago
  69. 541067a Issue #19437: Fix array.buffer_info(), handle PyLong_FromVoidPtr() and by Victor Stinner · 11 years ago
  70. 9ed5f27 Issue #18722: Remove uses of the "register" keyword in C code. by Antoine Pitrou · 11 years ago
  71. 4755bea Issue #18408: Fix array_tolist(), handle PyList_SetItem() failure by Victor Stinner · 11 years ago
  72. 0b142e2 Issue #18408: Fix array_index(), handle getarrayitem() failure by Victor Stinner · 11 years ago
  73. 25c3053 (Merge 3.3) Issue #17223: array module: Fix a crasher when converting an array by Victor Stinner · 11 years ago
  74. 29ec595 Issue #17223: array module: Fix a crasher when converting an array containing by Victor Stinner · 11 years ago
  75. 0485314 Make indentation consistent and remove dead commented-out code. by Eli Bendersky · 12 years ago
  76. 03ab4d3 Make indentation consistent and remove dead commented-out code. by Eli Bendersky · 12 years ago
  77. 370bc2f Code style fixup: No need for double ((parenthesis)) and use {} on an if else. by Gregory P. Smith · 12 years ago
  78. 08d5ca6 Code style fixup: No need for double ((parenthesis)) and use {} on an if else. by Gregory P. Smith · 12 years ago
  79. 9504b13 Code style fixup: No need for double ((parenthesis)) and use {} on an if else. by Gregory P. Smith · 12 years ago
  80. 743e0cd Issue #16166: Add PY_LITTLE_ENDIAN and PY_BIG_ENDIAN macros and unified by Christian Heimes · 12 years ago
  81. c04ddff Issue #16096: Fix several occurrences of potential signed integer overflow. Thanks Serhiy Storchaka. by Mark Dickinson · 12 years ago
  82. 80dd1af Issue #15424: Add a __sizeof__ implementation for array objects. by Meador Inge · 12 years ago
  83. 03b4d50 Issue #15424: Add a __sizeof__ implementation for array objects. by Meador Inge · 12 years ago
  84. 62bb394 Close #13072: Restore code before the PEP 393 for the array module by Victor Stinner · 12 years ago
  85. a701388 Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in the stable ABI. by Antoine Pitrou · 12 years ago
  86. 31668b8 Issue #14288: Serialization support for builtin iterators. by Kristján Valur Jónsson · 12 years ago
  87. 720682e Merge 3.2 by Florent Xicluna · 13 years ago
  88. 0e686cb Fix docstring typo. by Florent Xicluna · 13 years ago
  89. 90bf5f1 Remove mention of narrow/wide builds and update array doc, add a test. by Ezio Melotti · 13 years ago
  90. 6a985c3 Merge 3.2. by Florent Xicluna · 13 years ago
  91. c45fb25 Issue #13255: wrong docstrings in array module. by Florent Xicluna · 13 years ago
  92. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  93. 1ee1b6f Use identifier API for PyObject_GetAttrString. by Martin v. Löwis · 13 years ago
  94. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  95. 1fe99a2 Fix a compiler warning by Victor Stinner · 13 years ago
  96. 1fbcaef Fix array.array('u') constructor by Victor Stinner · 13 years ago
  97. 8dba4e0 array module uses the new Unicode API by Victor Stinner · 13 years ago
  98. f8bb7d0 array module stores the typecode in a char, instead of Py_UNICODE by Victor Stinner · 13 years ago
  99. 4cb0de2 Rename new macros to conform to naming rules (function macros have "Py" prefix, not "PY"). by Georg Brandl · 13 years ago
  100. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago