summaryrefslogtreecommitdiffstats
path: root/Modules/arraymodule.c
Commit message (Expand)AuthorAgeFilesLines
* gh-140474: Fix memory leak in `array.array` (GH-140478)Stan Ulbrych2025-10-231-0/+3
* GH-135763: AC: Use ``Py_ssize_t(allow_negative=False)`` (#138394)Adam Turner2025-09-021-6/+2
* gh-138342: Use a common utility for visiting an object's type (GH-138343)Peter Bierma2025-09-011-9/+1
* GH-137623: Use an AC decorator for docstring line length enforcement (#137690)Adam Turner2025-08-181-7/+14
* gh-135607: remove null checking of weakref list in dealloc of extension modul...Xuanteng Huang2025-06-301-3/+2
* Revert "gh-133395: add option for extension modules to specialize BINARY_OP/S...Irit Katriel2025-05-061-72/+0
* gh-133395: add option for extension modules to specialize BINARY_OP/SUBSCR, a...Irit Katriel2025-05-051-0/+72
* gh-132527: Added missing `w` typecode to array() error message (#132529)Christian Veenhuis2025-04-251-1/+1
* gh-111178: Change Argument Clinic signature for METH_O (#130682)Victor Stinner2025-03-111-12/+12
* Revert "gh-128942: make `array` module thread safe (#128943)" (#130707)Sam Gross2025-02-281-370/+150
* gh-128942: make `array` module thread safe (#128943)Tomasz Pytel2025-02-271-150/+370
* gh-111178: fix UBSan failures in `Modules/arraymodule.c` (GH-129772)Bénédikt Tran2025-02-081-40/+59
* gh-128911: Add PyImport_ImportModuleAttr() function (#128912)Victor Stinner2025-01-301-2/+2
* gh-111178: Generate correct signature for most self converters (#128447)Erlend E. Aasland2025-01-201-3/+2
* gh-128961: Fix exhausted array iterator crash in __setstate__() (#128962)Tomasz Pytel2025-01-181-5/+10
* gh-121905: Consistently use "floating-point" instead of "floating point" (GH-...Serhiy Storchaka2024-07-191-3/+3
* gh-117557: Improve error messages when a string, bytes or bytearray of length...Serhiy Storchaka2024-05-281-12/+28
* gh-116322: Add Py_mod_gil module slot (#116882)Brett Simmers2024-05-031-0/+1
* gh-116447: Fix possible UB in `arraymodule` and `getargs` (#116459)Nikita Sobolev2024-03-081-1/+1
* gh-114894: add array.array.clear() method (#114919)Mike Zimin2024-02-101-0/+16
* gh-106320: Re-add some PyLong/PyDict C-API functions (GH-#111162)scoder2023-10-251-1/+0
* gh-110964: Remove private _PyArg functions (#110966)Victor Stinner2023-10-171-0/+1
* gh-106320: Remove private _PyEval function (#108433)Victor Stinner2023-08-241-0/+1
* gh-106320: Remove private PyLong C API functions (#108429)Victor Stinner2023-08-241-1/+2
* gh-106869: Use new PyMemberDef constant names (#106871)Victor Stinner2023-07-251-2/+2
* gh-86493: Modernize modules initialization code (GH-106858)Serhiy Storchaka2023-07-251-5/+3
* gh-106521: Remove _PyObject_LookupAttr() function (GH-106642)Serhiy Storchaka2023-07-121-1/+1
* gh-104922: remove PY_SSIZE_T_CLEAN (#106315)Inada Naoki2023-07-021-1/+0
* gh-106084: Remove _PyObject_CallMethod() function (#106159)Victor Stinner2023-06-271-0/+1
* gh-105375: Improve array.array exception handling (#105594)Erlend E. Aasland2023-06-111-3/+5
* gh-80480: Emit DeprecationWarning for array's 'u' type code (#95760)Hugo van Kemenade2023-06-111-0/+9
* gh-80480: array: Add 'w' typecode. (#105242)Inada Naoki2023-06-041-26/+107
* gh-105156: Deprecate the old Py_UNICODE type in C API (#105157)Victor Stinner2023-06-011-2/+2
* gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)Eric Snow2023-05-051-0/+1
* gh-102650: Remove duplicate include directives from multiple source files (#1...chgnrdv2023-03-131-1/+0
* gh-99845: Use size_t type in __sizeof__() methods (#99846)Victor Stinner2022-11-301-3/+3
* gh-99300: Use Py_NewRef() in Modules/ directory (#99468)Victor Stinner2022-11-141-24/+13
* GH-81057: Remove static state from arraymodule (#99409)Kumar Aditya2022-11-121-5/+12
* gh-98658: Add __class_getitem__ to array.array (#98661)Jelle Zijlstra2022-11-011-0/+1
* gh-93741: Add private C API _PyImport_GetModuleAttrString() (GH-93742)Serhiy Storchaka2022-06-141-17/+4
* bpo-47070: Add _PyBytes_Repeat() (GH-31999)Pieter Eendebak2022-03-281-31/+18
* bpo-46906: Add PyFloat_Pack8() to the C API (GH-31657)Victor Stinner2022-03-111-7/+4
* bpo-46541: Remove unnecessary Py_VISIT (GH-31608)Dong-hee Na2022-02-281-5/+0
* bpo-46541: Remove usage of _Py_IDENTIFIER from array module (GH-31376)Dong-hee Na2022-02-171-20/+69
* bpo-46613: Add PyType_GetModuleByDef to the public API (GH-31081)Petr Viktorin2022-02-111-1/+1
* bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...Eric Snow2022-02-081-0/+1
* bpo-45723: Prepare support for autoconf 2.71 (GH-29441)Christian Heimes2021-11-081-7/+0
* bpo-43974: Move Py_BUILD_CORE_MODULE into module code (GH-29157)Christian Heimes2021-10-221-0/+4
* bpo-35134: Add Include/cpython/floatobject.h (GH-28957)Victor Stinner2021-10-141-0/+1
* [codemod] Fix non-matching bracket pairs (GH-28473)Mohamad Mansour2021-09-211-2/+2