aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Objects/bytesobject.c
Commit message (Expand)AuthorAge
* GH-93207: Remove HAVE_STDARG_PROTOTYPES configure check for stdarg.h (#93215)Kumar Aditya2022-05-27
* gh-89653: Use int type for Unicode kind (#92704)Victor Stinner2022-05-13
* Use static inline function Py_EnterRecursiveCall() (#91988)Victor Stinner2022-05-04
* gh-81548: Deprecate octal escape sequences with value larger than 0o377 (GH-9...Serhiy Storchaka2022-04-30
* gh-91020: Add `PyBytes_Type.tp_alloc` for subclass (GH-91686)Inada Naoki2022-04-20
* bpo-45995: add "z" format specifer to coerce negative 0 to zero (GH-30049)John Belmonte2022-04-11
* bpo-47070: Add _PyBytes_Repeat() (GH-31999)Pieter Eendebak2022-03-28
* bpo-47116: use _PyLong_FromUnsignedChar instead of PyLong_FromLong (GH-32110)Pieter Eendebak2022-03-26
* bpo-47012: speed up iteration of bytes and bytearray (GH-31867)Kumar Aditya2022-03-23
* bpo-46864: Deprecate PyBytesObject.ob_shash. (GH-31598)Inada Naoki2022-03-06
* bpo-46848: Move _PyBytes_Find() to internal C API (GH-31642)Victor Stinner2022-03-02
* bpo-46848: Use stringlib/fastsearch in mmap (GH-31625)Dennis Sweeney2022-03-01
* bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...Eric Snow2022-02-08
* bpo-46670: Define all macros for stringlib (GH-31176)Victor Stinner2022-02-07
* bpo-46417: Add missing types of _PyTypes_InitTypes() (GH-30749)Victor Stinner2022-01-21
* bpo-45953: Statically allocate and initialize global bytes objects. (gh-30096)Eric Snow2022-01-11
* bpo-46008: Make runtime-global object/type lifecycle functions and state cons...Eric Snow2021-12-09
* bpo-35134: Add Include/cpython/longobject.h (GH-29044)Victor Stinner2021-10-19
* bpo-45434: Remove pystrhex.h header file (GH-28923)Victor Stinner2021-10-13
* bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)Victor Stinner2021-10-12
* bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)Victor Stinner2021-10-12
* Fix bytes.__bytes__ to not truncate at a zero byte (GH-27902)Mark Dickinson2021-08-23
* bpo-24234: Implement bytes.__bytes__ (GH-27901)Dong-hee Na2021-08-23
* bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917)Brandt Bucher2021-02-26
* bpo-43268: Pass interp rather than tstate to internal functions (GH-24580)Victor Stinner2021-02-19
* bpo-42431: Fix outdated bytes comments (GH-23458)Serhiy Storchaka2020-12-03
* bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587)Victor Stinner2020-12-01
* bpo-42435: Speed up comparison of bytes and bytearray object (GH--23461)Serhiy Storchaka2020-11-22
* bpo-41974: Remove complex.__float__, complex.__floordiv__, etc (GH-22593)Serhiy Storchaka2020-10-09
* A (very) slight speed improvement for iterating over bytes (#21705)Guido van Rossum2020-08-03
* bpo-41334: Convert constructors of str, bytes and bytearray to Argument Clini...Serhiy Storchaka2020-07-20
* bpo-37999: Simplify the conversion code for %c, %d, %x, etc. (GH-20437)Serhiy Storchaka2020-06-29
* bpo-40521: Optimize PyBytes_FromStringAndSize(str, 0) (GH-21142)Victor Stinner2020-06-25
* bpo-40521: Make bytes singletons per interpreter (GH-21074)Victor Stinner2020-06-23
* bpo-40989: PyObject_INIT() becomes an alias to PyObject_Init() (GH-20901)Victor Stinner2020-06-16
* bpo-40943: Replace PY_FORMAT_SIZE_T with "z" (GH-20781)Victor Stinner2020-06-10
* bpo-40792: Make the result of PyNumber_Index() always having exact type int. ...Serhiy Storchaka2020-05-28
* bpo-39939: Add str.removeprefix and str.removesuffix (GH-18939)sweeneyde2020-04-22
* bpo-40268: Remove unused pycore_pymem.h includes (GH-19531)Victor Stinner2020-04-15
* bpo-40268: Add _PyInterpreterState_GetConfig() (GH-19492)Victor Stinner2020-04-13
* bpo-39943: Add the const qualifier to pointers on non-mutable PyBytes data. (...Serhiy Storchaka2020-04-12
* bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data....Serhiy Storchaka2020-04-11
* bpo-40170: Add _PyIndex_Check() internal function (GH-19426)Victor Stinner2020-04-08
* bpo-35081: Move bytes_methods.h to the internal C API (GH-18492)Victor Stinner2020-02-12
* bpo-39245: Switch to public API for Vectorcall (GH-18460)Petr Viktorin2020-02-11
* bpo-39573: Use Py_SET_SIZE() function (GH-18402)Victor Stinner2020-02-07
* bpo-39573: Use Py_TYPE() macro in Objects directory (GH-18392)Victor Stinner2020-02-07
* bpo-39542: Simplify _Py_NewReference() (GH-18332)Victor Stinner2020-02-03
* bpo-39489: Remove COUNT_ALLOCS special build (GH-18259)Victor Stinner2020-02-03
* bpo-39487: Merge duplicated _Py_IDENTIFIER identifiers in C code (GH-18254)Hai Shi2020-01-30