| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-39573: Use Py_SET_SIZE() function (GH-18402) | Victor Stinner | 2020-02-07 | 1 | -5/+5 |
|
|
* | bpo-39573: Add Py_SET_TYPE() function (GH-18394) | Victor Stinner | 2020-02-07 | 1 | -1/+1 |
|
|
* | bpo-38916: array.array: remove fromstring() and tostring() (GH-17487) | Victor Stinner | 2019-12-09 | 1 | -41/+0 |
|
|
* | bpo-38677: Fix arraymodule error handling in module initialization. (GH-17039) | Marco Paolini | 2019-11-15 | 1 | -8/+12 |
|
|
* | bpo-38465: Convert the type of exports counters to Py_ssize_t. (GH-16746) | Hai Shi | 2019-10-21 | 1 | -1/+1 |
|
|
* | Remove redundant check from arraymodule b_getitem (GH-14676) | Disconnect3d | 2019-07-11 | 1 | -3/+1 |
|
|
* | bpo-37547: add _PyObject_CallMethodOneArg (GH-14685) | Jeroen Demeyer | 2019-07-11 | 1 | -1/+1 |
|
|
* | bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G... | Jeroen Demeyer | 2019-05-31 | 1 | -4/+4 |
|
|
* | bpo-36842: Implement PEP 578 (GH-12613) | Steve Dower | 2019-05-23 | 1 | -0/+5 |
|
|
* | bpo-36946: Fix possible signed integer overflow when handling slices. (GH-13375) | Zackery Spytz | 2019-05-17 | 1 | -2/+4 |
|
|
* | bpo-36285: Fix integer overflow in the array module. (GH-12317) | sth | 2019-03-20 | 1 | -4/+4 |
|
|
* | bpo-36048: Use __index__() instead of __int__() for implicit conversion if av... | Serhiy Storchaka | 2019-02-25 | 1 | -1/+1 |
|
|
* | bpo-35489: Use "const Py_UNICODE *" for the Py_UNICODE converter in AC. (GH-1... | Serhiy Storchaka | 2018-12-14 | 1 | -2/+2 |
|
|
* | bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11... | Serhiy Storchaka | 2018-12-11 | 1 | -1/+2 |
|
|
* | bpo-35441: Remove dead and buggy code related to PyList_SetItem(). (GH-11033) | Zackery Spytz | 2018-12-08 | 1 | -3/+8 |
|
|
* | bpo-32747: Remove trailing spaces in docstrings. (GH-5491) | oldk | 2018-02-02 | 1 | -17/+17 |
|
|
* | bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code ... | Serhiy Storchaka | 2018-01-25 | 1 | -4/+3 |
|
|
* | bpo-32020: arraymodule: Correct missing Py_DECREF in failure case of make_arr... | Mat M | 2017-11-14 | 1 | -1/+3 |
|
|
* | bpo-27541: Reprs of subclasses of some classes now contain actual type name. ... | Serhiy Storchaka | 2017-09-21 | 1 | -2/+4 |
|
|
* | bpo-24700: Add a fast path for comparing array.array of equal type (#3009) | Adrian Wielgosik | 2017-08-17 | 1 | -15/+66 |
|
|
* | bpo-30592: Fixed error messages for some builtins. (#1996) | Serhiy Storchaka | 2017-06-08 | 1 | -1/+1 |
|
|
* | Change error message for array methods to use 'array' instead of 'list'. (#1853) | Jim Fasarakis-Hilliard | 2017-05-29 | 1 | -2/+2 |
|
|
* | Expand the PySlice_GetIndicesEx macro. (#1023) | Serhiy Storchaka | 2017-04-08 | 1 | -5/+6 |
|
|
* | bpo-29932: Fix small error message typos in arraymodule.c (GH-888) | Sylvain | 2017-03-29 | 1 | -3/+3 |
|
|
* | bpo-28298: make array 'Q', 'L' and 'I' accept big intables as elements (#570) | orenmn | 2017-03-09 | 1 | -46/+62 |
|
|
* | Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever | Serhiy Storchaka | 2017-01-23 | 1 | -16/+8 |
|
|
* | Use _PyObject_CallMethodIdObjArgs() | Victor Stinner | 2016-12-09 | 1 | -1/+1 |
|
|
* | Issue #19569: Compiler warnings are now emitted if use most of deprecated | Serhiy Storchaka | 2016-11-20 | 1 | -2/+2 |
|
|
* | Issue #28126: Replace Py_MEMCPY with memcpy(). Visual Studio can properly opt... | Christian Heimes | 2016-09-13 | 1 | -2/+2 |
|
|
* | Issue #27570: Merge null pointer fixes from 3.5 | Martin Panter | 2016-09-07 | 1 | -8/+16 |
|\ |
|
| * | Issue #27570: Avoid zero-length memcpy() calls with null source pointers | Martin Panter | 2016-09-07 | 1 | -8/+16 |
|
|
* | | replace PY_LONG_LONG with long long | Benjamin Peterson | 2016-09-06 | 1 | -13/+13 |
|
|
* | | require a long long data type (closes #27961) | Benjamin Peterson | 2016-09-06 | 1 | -11/+0 |
|
|
* | | Issue #7063: Remove dead code from array slice handling | Martin Panter | 2016-07-25 | 1 | -47/+8 |
|
|
* | | - Issue #27332: Fixed the type of the first argument of module-level functions | Serhiy Storchaka | 2016-07-07 | 1 | -2/+2 |
|\ \
| |/ |
|
| * | Issue #27332: Fixed the type of the first argument of module-level functions | Serhiy Storchaka | 2016-07-07 | 1 | -2/+2 |
|
|
* | | Fixed integer overflow in array.buffer_info(). | Serhiy Storchaka | 2016-06-23 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | Fixed integer overflow in array.buffer_info(). | Serhiy Storchaka | 2016-06-23 | 1 | -1/+1 |
|
|
* | | Merge typo fixes from 3.5 | Martin Panter | 2016-05-08 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | Corrections for a/an in code comments and documentation | Martin Panter | 2016-05-08 | 1 | -1/+1 |
|
|
* | | Issue #26492: Exhausted iterator of array.array now conforms with the behavior | Serhiy Storchaka | 2016-03-30 | 1 | -4/+18 |
|
|
* | | Issue #25923: Added the const qualifier to static constant arrays. | Serhiy Storchaka | 2015-12-25 | 1 | -9/+9 |
|/ |
|
* | Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size. | Serhiy Storchaka | 2015-12-19 | 1 | -1/+1 |
|
|
* | PEP 489: Multi-phase extension module initialization | Nick Coghlan | 2015-05-23 | 1 | -21/+29 |
|
|
* | Issue #24000: Improved Argument Clinic's mapping of converters to legacy | Larry Hastings | 2015-05-08 | 1 | -2/+2 |
|
|
* | Issue #24001: Argument Clinic converters now use accept={type} | Larry Hastings | 2015-05-04 | 1 | -4/+4 |
|
|
* | Issue #23935: Argument Clinic's understanding of format units | Larry Hastings | 2015-04-16 | 1 | -4/+4 |
|
|
* | Issue #23944: Argument Clinic now wraps long impl prototypes at column 78. | Larry Hastings | 2015-04-14 | 1 | -4/+8 |
|
|
* | Fixed the array module broken in issue #23492. | Serhiy Storchaka | 2015-04-04 | 1 | -15/+4 |
|
|
* | Issue #23501: Argumen Clinic now generates code into separate files by default. | Serhiy Storchaka | 2015-04-03 | 1 | -2/+1 |
|
|