| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-104223: Fix issues with inheriting from buffer classes (#104227) | Jelle Zijlstra | 2023-05-08 | 1 | -0/+1 |
|
|
* | gh-101765: Fix SystemError / segmentation fault in iter `__reduce__` when int... | Ionite | 2023-02-24 | 1 | -3/+8 |
|
|
* | bpo-15999: Accept arbitrary values for boolean parameters. (#15609) | Serhiy Storchaka | 2022-12-03 | 1 | -2/+2 |
|
|
* | gh-99845: Use size_t type in __sizeof__() methods (#99846) | Victor Stinner | 2022-11-30 | 1 | -4/+3 |
|
|
* | gh-99300: Replace Py_INCREF() with Py_NewRef() (#99513) | Victor Stinner | 2022-11-16 | 1 | -8/+4 |
|
|
* | GH-91153: Handle mutating __index__ methods in bytearray item assignment (GH-... | Brandt Bucher | 2022-07-19 | 1 | -11/+25 |
|
|
* | gh-93033: Use wmemchr in stringlib (GH-93034) | goldsteinn | 2022-05-24 | 1 | -0/+1 |
|
|
* | gh-91266: refactor bytearray strip methods (GH-32096) | Pieter Eendebak | 2022-04-14 | 1 | -85/+40 |
|
|
* | bpo-26579: Add object.__getstate__(). (GH-2821) | Serhiy Storchaka | 2022-04-06 | 1 | -19/+10 |
|
|
* | bpo-47070: Add _PyBytes_Repeat() (GH-31999) | Pieter Eendebak | 2022-03-28 | 1 | -46/+15 |
|
|
* | bpo-47116: use _PyLong_FromUnsignedChar instead of PyLong_FromLong (GH-32110) | Pieter Eendebak | 2022-03-26 | 1 | -3/+3 |
|
|
* | bpo-47012: speed up iteration of bytes and bytearray (GH-31867) | Kumar Aditya | 2022-03-23 | 1 | -6/+3 |
|
|
* | bpo-47005: Improve performance of bytearray_repeat and bytearray_irepeat (GH-... | Pieter Eendebak | 2022-03-17 | 1 | -6/+22 |
|
|
* | bpo-46993: Speed up bytearray creation from list and tuple (GH-31834) | Kumar Aditya | 2022-03-15 | 1 | -2/+27 |
|
|
* | bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g... | Eric Snow | 2022-02-08 | 1 | -5/+3 |
|
|
* | bpo-46670: Define all macros for stringlib (GH-31176) | Victor Stinner | 2022-02-07 | 1 | -0/+1 |
|
|
* | bpo-45434: Remove pystrhex.h header file (GH-28923) | Victor Stinner | 2021-10-13 | 1 | -2/+2 |
|
|
* | bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917) | Brandt Bucher | 2021-02-26 | 1 | -1/+2 |
|
|
* | bpo-42979: Use _Py_CheckSlotResult() to check slots result (GH-24356) | Victor Stinner | 2021-01-29 | 1 | -4/+6 |
|
|
* | bpo-42924: Fix incorrect copy in bytearray_repeat (GH-24208) | Tobias Holl | 2021-01-13 | 1 | -2/+4 |
|
|
* | bpo-42431: Fix outdated bytes comments (GH-23458) | Serhiy Storchaka | 2020-12-03 | 1 | -10/+7 |
|
|
* | bpo-42435: Speed up comparison of bytes and bytearray object (GH--23461) | Serhiy Storchaka | 2020-11-22 | 1 | -12/+8 |
|
|
* | bpo-41334: Convert constructors of str, bytes and bytearray to Argument Clini... | Serhiy Storchaka | 2020-07-20 | 1 | -11/+13 |
|
|
* | bpo-41175: Guard against a NULL pointer dereference within bytearrayobject (G... | stratakis | 2020-07-08 | 1 | -1/+3 |
|
|
* | bpo-37999: Simplify the conversion code for %c, %d, %x, etc. (GH-20437) | Serhiy Storchaka | 2020-06-29 | 1 | -13/+6 |
|
|
* | bpo-39939: Add str.removeprefix and str.removesuffix (GH-18939) | sweeneyde | 2020-04-22 | 1 | -0/+67 |
|
|
* | bpo-40268: Remove unused pycore_pymem.h includes (GH-19531) | Victor Stinner | 2020-04-15 | 1 | -1/+0 |
|
|
* | bpo-40268: Remove unused structmember.h includes (GH-19530) | Victor Stinner | 2020-04-15 | 1 | -2/+1 |
|
|
* | bpo-40268: Add _PyInterpreterState_GetConfig() (GH-19492) | Victor Stinner | 2020-04-13 | 1 | -5/+2 |
|
|
* | bpo-40170: Add _PyIndex_Check() internal function (GH-19426) | Victor Stinner | 2020-04-08 | 1 | -3/+4 |
|
|
* | bpo-35081: Move bytes_methods.h to the internal C API (GH-18492) | Victor Stinner | 2020-02-12 | 1 | -1/+1 |
|
|
* | bpo-39245: Switch to public API for Vectorcall (GH-18460) | Petr Viktorin | 2020-02-11 | 1 | -2/+2 |
|
|
* | bpo-39573: Use Py_SET_SIZE() function (GH-18402) | Victor Stinner | 2020-02-07 | 1 | -5/+5 |
|
|
* | bpo-39573: Use Py_TYPE() macro in Objects directory (GH-18392) | Victor Stinner | 2020-02-07 | 1 | -2/+2 |
|
|
* | bpo-37840: Fix handling of negative indices in bytearray_getitem() (GH-15250) | Sergey Fedoseev | 2019-09-09 | 1 | -2/+0 |
|
|
* | bpo-37994: Fix silencing all errors if an attribute lookup fails. (GH-15630) | Serhiy Storchaka | 2019-09-01 | 1 | -2/+3 |
|
|
* | bpo-37483: add _PyObject_CallOneArg() function (#14558) | Jeroen Demeyer | 2019-07-04 | 1 | -4/+2 |
|
|
* | bpo-37417: Fix error handling in bytearray.extend. (GH-14407) | Brandt Bucher | 2019-06-26 | 1 | -0/+4 |
|
|
* | bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G... | Jeroen Demeyer | 2019-05-31 | 1 | -4/+4 |
|
|
* | bpo-22385: Support output separators in hex methods. (#13578) | Gregory P. Smith | 2019-05-29 | 1 | -8/+26 |
|
|
* | bpo-36763: Implement the PEP 587 (GH-13592) | Victor Stinner | 2019-05-27 | 1 | -2/+2 |
|
|
* | bpo-36946: Fix possible signed integer overflow when handling slices. (GH-13375) | Zackery Spytz | 2019-05-17 | 1 | -1/+2 |
|
|
* | bpo-36900: Replace global conf vars with config (GH-13299) | Victor Stinner | 2019-05-14 | 1 | -2/+4 |
|
|
* | bpo-35713: Rework Python initialization (GH-11647) | Victor Stinner | 2019-01-22 | 1 | -11/+0 |
|
|
* | bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11... | Serhiy Storchaka | 2018-12-11 | 1 | -2/+3 |
|
|
* | bpo-35081: Add Include/internal/pycore_object.h (GH-10640) | Victor Stinner | 2018-11-21 | 1 | -0/+1 |
|
|
* | bpo-35081: Rename internal headers (GH-10275) | Victor Stinner | 2018-11-12 | 1 | -2/+2 |
|
|
* | bpo-35081: Add pycore_ prefix to internal header files (GH-10263) | Victor Stinner | 2018-10-31 | 1 | -2/+2 |
|
|
* | bpo-34984: Improve error messages for bytes and bytearray constructors. (GH-9... | Serhiy Storchaka | 2018-10-21 | 1 | -4/+20 |
|
|
* | bpo-34974: Do not replace unexpected errors in bytes() and bytearray(). (GH-9... | Serhiy Storchaka | 2018-10-14 | 1 | -2/+1 |
|
|