COMMITS
/ Objects/bytesobject.c November 10, 2022
V
gh-99300: Use Py_NewRef() in Objects/ directory (#99332)
Victor Stinner committed
May 27, 2022
K
GH-93207: Remove HAVE_STDARG_PROTOTYPES configure check for stdarg.h (#93215)
Kumar Aditya committed
May 13, 2022
V
gh-89653: Use int type for Unicode kind (#92704)
Victor Stinner committed
May 4, 2022
V
Use static inline function Py_EnterRecursiveCall() (#91988)
Victor Stinner committed
April 30, 2022
S
gh-81548: Deprecate octal escape sequences with value larger than 0o377 (GH-91668)
Serhiy Storchaka committed
April 20, 2022
I
gh-91020: Add `PyBytes_Type.tp_alloc` for subclass (GH-91686)
Inada Naoki committed
April 11, 2022
J
bpo-45995: add "z" format specifer to coerce negative 0 to zero (GH-30049)
John Belmonte 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 6, 2022
I
bpo-46864: Deprecate PyBytesObject.ob_shash. (GH-31598)
Inada Naoki committed
March 2, 2022
V
bpo-46848: Move _PyBytes_Find() to internal C API (GH-31642)
Victor Stinner committed
D
bpo-46848: Use stringlib/fastsearch in mmap (GH-31625)
Dennis Sweeney committed
February 8, 2022
February 7, 2022
V
bpo-46670: Define all macros for stringlib (GH-31176)
Victor Stinner committed
January 21, 2022
V
bpo-46417: Add missing types of _PyTypes_InitTypes() (GH-30749)
Victor Stinner committed
January 11, 2022
E
bpo-45953: Statically allocate and initialize global bytes objects. (gh-30096)
Eric Snow committed
December 9, 2021
October 19, 2021
V
bpo-35134: Add Include/cpython/longobject.h (GH-29044)
Victor Stinner committed
October 13, 2021
V
bpo-45434: Remove pystrhex.h header file (GH-28923)
Victor Stinner committed
October 12, 2021
V
bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)
Victor Stinner committed
October 11, 2021
V
bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)
Victor Stinner committed
August 23, 2021
M
Fix bytes.__bytes__ to not truncate at a zero byte (GH-27902)
Mark Dickinson committed
D
bpo-24234: Implement bytes.__bytes__ (GH-27901)
Dong-hee Na committed
February 26, 2021
B
bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917)
Brandt Bucher committed
February 19, 2021
V
bpo-43268: Pass interp rather than tstate to internal functions (GH-24580)
Victor Stinner committed
December 3, 2020
S
bpo-42431: Fix outdated bytes comments (GH-23458)
Serhiy Storchaka committed
December 1, 2020
V
bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587)
Victor Stinner committed
November 22, 2020
S
bpo-42435: Speed up comparison of bytes and bytearray object (GH--23461)
Serhiy Storchaka committed
October 9, 2020
S
bpo-41974: Remove complex.__float__, complex.__floordiv__, etc (GH-22593)
Serhiy Storchaka committed
August 3, 2020
G
A (very) slight speed improvement for iterating over bytes (#21705)
Guido van Rossum committed
July 20, 2020
S
bpo-41334: Convert constructors of str, bytes and bytearray to Argument Clinic (GH-21535)
Serhiy Storchaka committed
June 29, 2020
S
bpo-37999: Simplify the conversion code for %c, %d, %x, etc. (GH-20437)
Serhiy Storchaka committed
June 25, 2020
V
bpo-40521: Optimize PyBytes_FromStringAndSize(str, 0) (GH-21142)
Victor Stinner committed
June 23, 2020
V
bpo-40521: Make bytes singletons per interpreter (GH-21074)
Victor Stinner committed
June 15, 2020
V
bpo-40989: PyObject_INIT() becomes an alias to PyObject_Init() (GH-20901)
Victor Stinner committed
June 10, 2020
V
bpo-40943: Replace PY_FORMAT_SIZE_T with "z" (GH-20781)
Victor Stinner committed
May 28, 2020
S
bpo-40792: Make the result of PyNumber_Index() always having exact type int. (GH-20443)
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
April 13, 2020
V
bpo-40268: Add _PyInterpreterState_GetConfig() (GH-19492)
Victor Stinner committed
April 12, 2020
S
bpo-39943: Add the const qualifier to pointers on non-mutable PyBytes data. (GH-19472)
Serhiy Storchaka committed
April 11, 2020
S
bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data. (GH-19345)
Serhiy Storchaka 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
February 3, 2020
V
bpo-39542: Simplify _Py_NewReference() (GH-18332)
Victor Stinner committed
V
bpo-39489: Remove COUNT_ALLOCS special build (GH-18259)
Victor Stinner committed