| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-121905: Consistently use "floating-point" instead of "floating point" (GH-... | Serhiy Storchaka | 2024-07-19 | 1 | -3/+3 |
|
|
* | gh-117557: Improve error messages when a string, bytes or bytearray of length... | Serhiy Storchaka | 2024-05-28 | 1 | -12/+28 |
|
|
* | gh-116322: Add Py_mod_gil module slot (#116882) | Brett Simmers | 2024-05-03 | 1 | -0/+1 |
|
|
* | gh-116447: Fix possible UB in `arraymodule` and `getargs` (#116459) | Nikita Sobolev | 2024-03-08 | 1 | -1/+1 |
|
|
* | gh-114894: add array.array.clear() method (#114919) | Mike Zimin | 2024-02-10 | 1 | -0/+16 |
|
|
* | gh-106320: Re-add some PyLong/PyDict C-API functions (GH-#111162) | scoder | 2023-10-25 | 1 | -1/+0 |
|
|
* | gh-110964: Remove private _PyArg functions (#110966) | Victor Stinner | 2023-10-17 | 1 | -0/+1 |
|
|
* | gh-106320: Remove private _PyEval function (#108433) | Victor Stinner | 2023-08-24 | 1 | -0/+1 |
|
|
* | gh-106320: Remove private PyLong C API functions (#108429) | Victor Stinner | 2023-08-24 | 1 | -1/+2 |
|
|
* | gh-106869: Use new PyMemberDef constant names (#106871) | Victor Stinner | 2023-07-25 | 1 | -2/+2 |
|
|
* | gh-86493: Modernize modules initialization code (GH-106858) | Serhiy Storchaka | 2023-07-25 | 1 | -5/+3 |
|
|
* | gh-106521: Remove _PyObject_LookupAttr() function (GH-106642) | Serhiy Storchaka | 2023-07-12 | 1 | -1/+1 |
|
|
* | gh-104922: remove PY_SSIZE_T_CLEAN (#106315) | Inada Naoki | 2023-07-02 | 1 | -1/+0 |
|
|
* | gh-106084: Remove _PyObject_CallMethod() function (#106159) | Victor Stinner | 2023-06-27 | 1 | -0/+1 |
|
|
* | gh-105375: Improve array.array exception handling (#105594) | Erlend E. Aasland | 2023-06-11 | 1 | -3/+5 |
|
|
* | gh-80480: Emit DeprecationWarning for array's 'u' type code (#95760) | Hugo van Kemenade | 2023-06-11 | 1 | -0/+9 |
|
|
* | gh-80480: array: Add 'w' typecode. (#105242) | Inada Naoki | 2023-06-04 | 1 | -26/+107 |
|
|
* | gh-105156: Deprecate the old Py_UNICODE type in C API (#105157) | Victor Stinner | 2023-06-01 | 1 | -2/+2 |
|
|
* | gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205) | Eric Snow | 2023-05-05 | 1 | -0/+1 |
|
|
* | gh-102650: Remove duplicate include directives from multiple source files (#1... | chgnrdv | 2023-03-13 | 1 | -1/+0 |
|
|
* | gh-99845: Use size_t type in __sizeof__() methods (#99846) | Victor Stinner | 2022-11-30 | 1 | -3/+3 |
|
|
* | gh-99300: Use Py_NewRef() in Modules/ directory (#99468) | Victor Stinner | 2022-11-14 | 1 | -24/+13 |
|
|
* | GH-81057: Remove static state from arraymodule (#99409) | Kumar Aditya | 2022-11-12 | 1 | -5/+12 |
|
|
* | gh-98658: Add __class_getitem__ to array.array (#98661) | Jelle Zijlstra | 2022-11-01 | 1 | -0/+1 |
|
|
* | gh-93741: Add private C API _PyImport_GetModuleAttrString() (GH-93742) | Serhiy Storchaka | 2022-06-14 | 1 | -17/+4 |
|
|
* | bpo-47070: Add _PyBytes_Repeat() (GH-31999) | Pieter Eendebak | 2022-03-28 | 1 | -31/+18 |
|
|
* | bpo-46906: Add PyFloat_Pack8() to the C API (GH-31657) | Victor Stinner | 2022-03-11 | 1 | -7/+4 |
|
|
* | bpo-46541: Remove unnecessary Py_VISIT (GH-31608) | Dong-hee Na | 2022-02-28 | 1 | -5/+0 |
|
|
* | bpo-46541: Remove usage of _Py_IDENTIFIER from array module (GH-31376) | Dong-hee Na | 2022-02-17 | 1 | -20/+69 |
|
|
* | bpo-46613: Add PyType_GetModuleByDef to the public API (GH-31081) | Petr Viktorin | 2022-02-11 | 1 | -1/+1 |
|
|
* | bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g... | Eric Snow | 2022-02-08 | 1 | -0/+1 |
|
|
* | bpo-45723: Prepare support for autoconf 2.71 (GH-29441) | Christian Heimes | 2021-11-08 | 1 | -7/+0 |
|
|
* | bpo-43974: Move Py_BUILD_CORE_MODULE into module code (GH-29157) | Christian Heimes | 2021-10-22 | 1 | -0/+4 |
|
|
* | bpo-35134: Add Include/cpython/floatobject.h (GH-28957) | Victor Stinner | 2021-10-14 | 1 | -0/+1 |
|
|
* | [codemod] Fix non-matching bracket pairs (GH-28473) | Mohamad Mansour | 2021-09-21 | 1 | -2/+2 |
|
|
* | bpo-43413: Fix handling keyword arguments in subclasses of some buitin classe... | Serhiy Storchaka | 2021-09-12 | 1 | -1/+3 |
|
|
* | bpo-43908: Make heap types converted during 3.10 alpha immutable (GH-26351) | Erlend Egeberg Aasland | 2021-06-17 | 1 | -1/+1 |
|
|
* | bpo-42972: Fully implement GC protocol for arraymodule types (GH-26114) | Erlend Egeberg Aasland | 2021-05-25 | 1 | -2/+11 |
|
|
* | bpo-43916: Apply Py_TPFLAGS_DISALLOW_INSTANTIATION to selected types (GH-25748) | Erlend Egeberg Aasland | 2021-04-30 | 1 | -1/+2 |
|
|
* | bpo-43977: Use tp_flags for collection matching (GH-25723) | Mark Shannon | 2021-04-30 | 1 | -1/+2 |
|
|
* | bpo-43908: Make array.array type immutable (GH-25696) | Erlend Egeberg Aasland | 2021-04-29 | 1 | -1/+2 |
|
|
* | bpo-40137: Add pycore_moduleobject.h internal header (GH-25507) | Victor Stinner | 2021-04-21 | 1 | -1/+2 |
|
|
* | bpo-31956: Add start and stop parameters to array.index() (GH-25059) | Zackery Spytz | 2021-04-02 | 1 | -6/+20 |
|
|
* | bpo-40077: Add traverse/clear/free to arraymodule (GH-24066) | Erlend Egeberg Aasland | 2021-01-03 | 1 | -6/+33 |
|
|
* | bpo-40077: Convert arraymodule to use heap types and establish module state (... | Erlend Egeberg Aasland | 2021-01-02 | 1 | -157/+172 |
|
|
* | bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586) | Victor Stinner | 2020-12-01 | 1 | -2/+2 |
|
|
* | bpo-29727: Register array.array as a MutableSequence (GH-21338) | Pablo Galindo | 2020-07-05 | 1 | -0/+20 |
|
|
* | bpo-41085: Fix array.array.index() on 64-bit Windows (GH-21071) | WildCard65 | 2020-06-23 | 1 | -1/+1 |
|
|
* | bpo-40792: Make the result of PyNumber_Index() always having exact type int. ... | Serhiy Storchaka | 2020-05-28 | 1 | -3/+3 |
|
|
* | bpo-39573: Convert Py_REFCNT and Py_SIZE to functions (GH-20429) | Victor Stinner | 2020-05-27 | 1 | -2/+2 |
|
|