COMMITS
/ Objects/bytearrayobject.c July 19, 2022
B
GH-91153: Handle mutating __index__ methods in bytearray item assignment (GH-94891)
Brandt Bucher committed
May 24, 2022
G
gh-93033: Use wmemchr in stringlib (GH-93034)
goldsteinn committed
April 14, 2022
P
gh-91266: refactor bytearray strip methods (GH-32096)
Pieter Eendebak committed
April 6, 2022
S
bpo-26579: Add object.__getstate__(). (GH-2821)
Serhiy Storchaka committed
March 28, 2022
P
bpo-47070: Add _PyBytes_Repeat() (GH-31999)
Pieter Eendebak committed
March 26, 2022
P
bpo-47116: use _PyLong_FromUnsignedChar instead of PyLong_FromLong (GH-32110)
Pieter Eendebak committed
March 23, 2022
K
bpo-47012: speed up iteration of bytes and bytearray (GH-31867)
Kumar Aditya committed
March 17, 2022
P
bpo-47005: Improve performance of bytearray_repeat and bytearray_irepeat (GH-31856)
Pieter Eendebak committed
March 15, 2022
K
bpo-46993: Speed up bytearray creation from list and tuple (GH-31834)
Kumar Aditya committed
February 8, 2022
February 7, 2022
V
bpo-46670: Define all macros for stringlib (GH-31176)
Victor Stinner committed
October 13, 2021
V
bpo-45434: Remove pystrhex.h header file (GH-28923)
Victor Stinner committed
February 26, 2021
B
bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917)
Brandt Bucher committed
January 29, 2021
V
bpo-42979: Use _Py_CheckSlotResult() to check slots result (GH-24356)
Victor Stinner committed
January 13, 2021
T
bpo-42924: Fix incorrect copy in bytearray_repeat (GH-24208)
Tobias Holl committed
December 3, 2020
S
bpo-42431: Fix outdated bytes comments (GH-23458)
Serhiy Storchaka committed
November 22, 2020
S
bpo-42435: Speed up comparison of bytes and bytearray object (GH--23461)
Serhiy Storchaka committed
July 20, 2020
S
bpo-41334: Convert constructors of str, bytes and bytearray to Argument Clinic (GH-21535)
Serhiy Storchaka committed
July 8, 2020
S
June 29, 2020
S
bpo-37999: Simplify the conversion code for %c, %d, %x, etc. (GH-20437)
Serhiy Storchaka committed
April 22, 2020
S
bpo-39939: Add str.removeprefix and str.removesuffix (GH-18939)
sweeneyde committed
April 15, 2020
V
bpo-40268: Remove unused pycore_pymem.h includes (GH-19531)
Victor Stinner committed
V
bpo-40268: Remove unused structmember.h includes (GH-19530)
Victor Stinner committed
April 13, 2020
V
bpo-40268: Add _PyInterpreterState_GetConfig() (GH-19492)
Victor Stinner committed
April 8, 2020
V
bpo-40170: Add _PyIndex_Check() internal function (GH-19426)
Victor Stinner committed
February 12, 2020
V
bpo-35081: Move bytes_methods.h to the internal C API (GH-18492)
Victor Stinner committed
February 11, 2020
P
bpo-39245: Switch to public API for Vectorcall (GH-18460)
Petr Viktorin committed
February 7, 2020
V
bpo-39573: Use Py_SET_SIZE() function (GH-18402)
Victor Stinner committed
V
bpo-39573: Use Py_TYPE() macro in Objects directory (GH-18392)
Victor Stinner committed
September 9, 2019
S
bpo-37840: Fix handling of negative indices in bytearray_getitem() (GH-15250)
Sergey Fedoseev committed
September 1, 2019
S
bpo-37994: Fix silencing all errors if an attribute lookup fails. (GH-15630)
Serhiy Storchaka committed
July 4, 2019
J
bpo-37483: add _PyObject_CallOneArg() function (#14558)
Jeroen Demeyer committed
June 26, 2019
B
bpo-37417: Fix error handling in bytearray.extend. (GH-14407)
Brandt Bucher committed
May 31, 2019
J
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464)
Jeroen Demeyer committed
May 29, 2019
G
bpo-22385: Support output separators in hex methods. (#13578)
Gregory P. Smith committed
May 27, 2019
V
bpo-36763: Implement the PEP 587 (GH-13592)
Victor Stinner committed
May 17, 2019
Z
bpo-36946: Fix possible signed integer overflow when handling slices. (GH-13375)
Zackery Spytz committed
May 14, 2019
V
bpo-36900: Replace global conf vars with config (GH-13299)
Victor Stinner committed
January 22, 2019
V
bpo-35713: Rework Python initialization (GH-11647)
Victor Stinner committed
December 11, 2018
S
bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11047)
Serhiy Storchaka committed
November 21, 2018
V
bpo-35081: Add Include/internal/pycore_object.h (GH-10640)
Victor Stinner committed
November 12, 2018
V
bpo-35081: Rename internal headers (GH-10275)
Victor Stinner committed
October 31, 2018
V
bpo-35081: Add pycore_ prefix to internal header files (GH-10263)
Victor Stinner committed
October 21, 2018
S
bpo-34984: Improve error messages for bytes and bytearray constructors. (GH-9874)
Serhiy Storchaka committed
October 14, 2018
S
bpo-34974: Do not replace unexpected errors in bytes() and bytearray(). (GH-9852)
Serhiy Storchaka committed
July 24, 2018
V
bpo-34170: Add _PyCoreConfig.bytes_warning (GH-8447)
Victor Stinner committed
July 6, 2018
T
bpo-20180: complete AC conversion of Objects/stringlib/transmogrify.h (GH-8039)
Tal Einat committed
April 29, 2018
S
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030)
Siddhesh Poyarekar committed
January 27, 2018
I
bpo-32677: Add .isascii() to str, bytes and bytearray (GH-5342)
INADA Naoki committed
November 11, 2017
S
Add the const qualifier to "char *" variables that refer to literal strings. (#4370)
Serhiy Storchaka committed