| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | remove unnecessary tp_dealloc (GH-13647) | Inada Naoki | 2019-05-29 | 1 | -9/+1 |
|
|
* | bpo-36763: Implement the PEP 587 (GH-13592) | Victor Stinner | 2019-05-27 | 1 | -2/+2 |
|
|
* | Fix couple of dead code paths (GH-7418) | David Carlier | 2019-05-17 | 1 | -2/+0 |
|
|
* | 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-36254: Fix invalid uses of %d in format strings in C. (GH-12264) | Serhiy Storchaka | 2019-03-13 | 1 | -1/+1 |
|
|
* | bpo-35552: Fix reading past the end in PyUnicode_FromFormat() and PyBytes_Fro... | Serhiy Storchaka | 2019-01-12 | 1 | -3/+9 |
|
|
* | bpo-33817: Fix _PyBytes_Resize() for empty bytes object. (GH-11516) | Serhiy Storchaka | 2019-01-12 | 1 | -0/+13 |
|
|
* | bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11... | Serhiy Storchaka | 2018-12-11 | 1 | -2/+3 |
|
|
* | bpo-35059: PyObject_INIT() casts to PyObject* (GH-10674) | Victor Stinner | 2018-11-23 | 1 | -3/+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-35064 prefix smelly symbols that appear with COUNT_ALLOCS with _Py_ (GH-1... | Pablo Galindo | 2018-10-28 | 1 | -5/+5 |
|
|
* | bpo-35059: Convert PyObject_INIT() to function (GH-10077) | Victor Stinner | 2018-10-26 | 1 | -3/+3 |
|
|
* | bpo-34984: Improve error messages for bytes and bytearray constructors. (GH-9... | Serhiy Storchaka | 2018-10-21 | 1 | -2/+3 |
|
|
* | bpo-34973: Fix crash in bytes constructor. (GH-9841) | Serhiy Storchaka | 2018-10-21 | 1 | -35/+69 |
|
|
* | bpo-34974: Do not replace unexpected errors in bytes() and bytearray(). (GH-9... | Serhiy Storchaka | 2018-10-14 | 1 | -1/+4 |
|
|
* | bpo-34879: Fix a possible null pointer dereference in bytesobject.c (GH-9683) | Zackery Spytz | 2018-10-03 | 1 | -1/+1 |
|
|
* | bpo-34436: Fix check that disables overallocation for the last fmt specifier ... | Alexey Izbyshev | 2018-08-23 | 1 | -3/+3 |
|
|
* | bpo-34170: Add _PyCoreConfig.bytes_warning (GH-8447) | Victor Stinner | 2018-07-24 | 1 | -1/+2 |
|
|
* | bpo-20180: complete AC conversion of Objects/stringlib/transmogrify.h (GH-8039) | Tal Einat | 2018-07-06 | 1 | -7/+5 |
|
|
* | bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH... | Siddhesh Poyarekar | 2018-04-29 | 1 | -17/+17 |
|
|
* | bpo-32677: Add .isascii() to str, bytes and bytearray (GH-5342) | INADA Naoki | 2018-01-27 | 1 | -0/+2 |
|
|
* | bpo-23699: Use a macro to reduce boilerplate code in rich comparison function... | stratakis | 2017-11-02 | 1 | -20/+7 |
|
|
* | bpo-20047: Make bytearray methods partition() and rpartition() rejecting (#4158) | Serhiy Storchaka | 2017-10-28 | 1 | -2/+2 |
|
|
* | bpo-31825: Fixed OverflowError in the 'unicode-escape' codec (#4058) | Serhiy Storchaka | 2017-10-20 | 1 | -1/+1 |
|
|
* | bpo-31338 (#3374) | Barry Warsaw | 2017-09-15 | 1 | -1/+1 |
|
|
* | bpo-30860: Consolidate stateful runtime globals. (#3397) | Eric Snow | 2017-09-08 | 1 | -0/+2 |
|
|
* | Expand the PySlice_GetIndicesEx macro. (#1023) | Serhiy Storchaka | 2017-04-08 | 1 | -3/+3 |
|
|
* | bpo-29116: Fix error messages for concatenating bytes and bytearray with unsu... | Serhiy Storchaka | 2017-03-19 | 1 | -1/+1 |
|
|
* | bpo-28856: Let %b format for bytes support objects that follow the buffer pro... | Xiang Zhang | 2017-03-14 | 1 | -1/+14 |
|
|
* | bpo-24037: Add Argument Clinic converter `bool(accept={int})`. (#485) | Serhiy Storchaka | 2017-03-12 | 1 | -2/+2 |
|
|
* | bpo-29568: Disable any characters between two percents for escaped percent "%... | Serhiy Storchaka | 2017-03-08 | 1 | -10/+10 |
|
|
* | bpo-29714: Fix a regression that bytes format may fail when containing zero ... | Xiang Zhang | 2017-03-06 | 1 | -2/+2 |
|
|
* | Merge 3.6 | INADA Naoki | 2017-01-06 | 1 | -8/+12 |
|\ |
|
| * | Issue #29159: Fix regression in bytes(x) when x.__index__() raises Exception. | INADA Naoki | 2017-01-06 | 1 | -8/+12 |
|
|
* | | Issue #28927: bytes.fromhex() and bytearray.fromhex() now ignore all ASCII | Serhiy Storchaka | 2016-12-19 | 1 | -2/+2 |
|
|
* | | Issue #29000: Fixed bytes formatting of octals with zero padding in alternate | Serhiy Storchaka | 2016-12-17 | 1 | -3/+2 |
|\ \
| |/ |
|
| * | Issue #29000: Fixed bytes formatting of octals with zero padding in alternate | Serhiy Storchaka | 2016-12-17 | 1 | -3/+2 |
| |\ |
|
| | * | Issue #29000: Fixed bytes formatting of octals with zero padding in alternate | Serhiy Storchaka | 2016-12-17 | 1 | -3/+2 |
|
|
| * | | Issue 28128: Print out better error/warning messages for invalid string escap... | Eric V. Smith | 2016-10-31 | 1 | -4/+33 |
|
|
* | | | Use _PyObject_CallNoArg() | Victor Stinner | 2016-12-06 | 1 | -2/+2 |
|
|
* | | | Backed out changeset b9c9691c72c5 | Victor Stinner | 2016-12-04 | 1 | -3/+4 |
|
|
* | | | Replace PyObject_CallFunctionObjArgs() with fastcall | Victor Stinner | 2016-12-01 | 1 | -4/+3 |
|
|
* | | | Issue #19569: Compiler warnings are now emitted if use most of deprecated | Serhiy Storchaka | 2016-11-20 | 1 | -4/+1 |
|
|
* | | | Issue 28128: Print out better error/warning messages for invalid string escapes. | Eric V. Smith | 2016-10-31 | 1 | -4/+33 |
|/ / |
|
* | | Issue #25270: Merge from 3.5 | Berker Peksag | 2016-09-16 | 1 | -5/+14 |
|\ \
| |/ |
|