| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-35059: PyObject_INIT() casts to PyObject* (GH-10674) | Victor Stinner | 2018-11-23 | 6 | -9/+9 |
|
|
* | bpo-9263: Fix _PyObject_Dump() for freed object (#10661) | Victor Stinner | 2018-11-22 | 1 | -0/+5 |
|
|
* | bpo-35059: Cast void* to PyObject* (GH-10650) | Victor Stinner | 2018-11-22 | 1 | -3/+6 |
|
|
* | bpo-35059: Cleanup usage of Python macros (GH-10648) | Victor Stinner | 2018-11-22 | 1 | -1/+2 |
|
|
* | bpo-35059: Enhance _PyObject_AssertFailed() (GH-10642) | Victor Stinner | 2018-11-21 | 1 | -10/+14 |
|
|
* | bpo-35081: Add Include/internal/pycore_object.h (GH-10640) | Victor Stinner | 2018-11-21 | 21 | -0/+21 |
|
|
* | bpo-35269: Fix a possible segfault involving a newly-created coroutine (GH-10... | Zackery Spytz | 2018-11-18 | 1 | -1/+1 |
|
|
* | bpo-34784: Implement correct cleanup in PyStructSequence new implementation (... | Pablo Galindo | 2018-11-15 | 1 | -0/+5 |
|
|
* | bpo-35230: dict: Remove some macros (GH-10513) | INADA Naoki | 2018-11-14 | 1 | -42/+59 |
|
|
* | bpo-35214: Fix OOB memory access in unicode escape parser (GH-10506) | Gregory P. Smith | 2018-11-13 | 1 | -1/+1 |
|
|
* | bpo-34784: Fix PyStructSequence_NewType with heap-allocated StructSequence (G... | Eddie Elizondo | 2018-11-13 | 2 | -96/+157 |
|
|
* | bpo-35214: Add _Py_ prefix to MEMORY_SANITIZER def. (GH-10503) | Gregory P. Smith | 2018-11-13 | 1 | -1/+1 |
|
|
* | Disable getc_unlocked() with MemorySanitizer. (GH-10499) | Gregory P. Smith | 2018-11-13 | 1 | -1/+2 |
|
|
* | bpo-35081: Rename internal headers (GH-10275) | Victor Stinner | 2018-11-12 | 26 | -36/+36 |
|
|
* | closes bpo-35204: Disable thread and memory sanitizers for address_in_range()... | Alexey Izbyshev | 2018-11-11 | 1 | -12/+31 |
|
|
* | Neaten the code without any algorithmic change. (GH-10466) | Raymond Hettinger | 2018-11-11 | 1 | -5/+2 |
|
|
* | bpo-35199: Add an internal _PyTuple_ITEMS() macro (GH-10434) | Victor Stinner | 2018-11-09 | 4 | -15/+15 |
|
|
* | Optimize set.pop() to advance a pointer instead of indexing. (GH-10429) | Raymond Hettinger | 2018-11-09 | 1 | -7/+8 |
|
|
* | bpo-35081: Add pycore_fileutils.h (GH-10371) | Victor Stinner | 2018-11-06 | 1 | -0/+1 |
|
|
* | bpo-33462: Add __reversed__ to dict and dict views (GH-6827) | RĂ©mi Lapeyre | 2018-11-06 | 3 | -6/+230 |
|
|
* | bpo-35081: Move accu.h to Include/internal/pycore_accu.h (GH-10271) | Victor Stinner | 2018-11-01 | 3 | -3/+3 |
|
|
* | bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266) | Victor Stinner | 2018-11-01 | 6 | -11/+11 |
|
|
* | bpo-35081: Add pycore_ prefix to internal header files (GH-10263) | Victor Stinner | 2018-10-31 | 26 | -37/+37 |
|
|
* | bpo-35081: Move Py_BUILD_CORE code to internal/mem.h (GH-10249) | Victor Stinner | 2018-10-31 | 1 | -0/+1 |
|
|
* | Fix a possible crash in range.__reversed__(). (GH-10252) | Zackery Spytz | 2018-10-31 | 1 | -0/+1 |
|
|
* | bpo-33138: Change standard error message for non-pickleable and non-copyable ... | Serhiy Storchaka | 2018-10-31 | 1 | -3/+3 |
|
|
* | bpo-35081: Cleanup pystate.c and pystate.h (GH-10240) | Victor Stinner | 2018-10-30 | 1 | -2/+2 |
|
|
* | bpo-35059: Convert _Py_Dealloc() to static inline function (GH-10223) | Victor Stinner | 2018-10-30 | 1 | -15/+9 |
|
|
* | bpo-33237: Improve AttributeError message for partially initialized module. (... | Serhiy Storchaka | 2018-10-30 | 1 | -2/+39 |
|
|
* | bpo-33234 Improve list() pre-sizing for inputs with known lengths (GH-9846) | Pablo Galindo | 2018-10-28 | 1 | -0/+40 |
|
|
* | bpo-35064 prefix smelly symbols that appear with COUNT_ALLOCS with _Py_ (GH-1... | Pablo Galindo | 2018-10-28 | 4 | -23/+23 |
|
|
* | bpo-34751: improved hash function for tuples (GH-9471) | jdemeyer | 2018-10-28 | 1 | -25/+46 |
|
|
* | bpo-9263: _PyXXX_CheckConsistency() use _PyObject_ASSERT() (GH-10108) | Victor Stinner | 2018-10-26 | 3 | -52/+64 |
|
|
* | bpo-9263: Use _PyObject_ASSERT() in typeobject.c (GH-10111) | Victor Stinner | 2018-10-26 | 1 | -10/+13 |
|
|
* | bpo-9263: Use _PyObject_ASSERT() in object.c (GH-10110) | Victor Stinner | 2018-10-26 | 1 | -18/+22 |
|
|
* | bpo-35059: Convert PyObject_INIT() to function (GH-10077) | Victor Stinner | 2018-10-26 | 6 | -9/+9 |
|
|
* | bpo-9263: _Py_NegativeRefcount() use _PyObject_AssertFailed() (GH-10109) | Victor Stinner | 2018-10-26 | 1 | -8/+5 |
|
|
* | bpo-9263: Dump Python object on GC assertion failure (GH-10062) | Victor Stinner | 2018-10-25 | 1 | -0/+52 |
|
|
* | bpo-35059: Add Py_STATIC_INLINE() macro (GH-10093) | Victor Stinner | 2018-10-25 | 1 | -2/+2 |
|
|
* | bpo-35053: Enhance tracemalloc to trace free lists (GH-10063) | Victor Stinner | 2018-10-25 | 2 | -0/+9 |
|
|
* | bpo-30863: Rewrite PyUnicode_AsWideChar() and PyUnicode_AsWideCharString(). (... | Serhiy Storchaka | 2018-10-23 | 1 | -123/+121 |
|
|
* | bpo-9263: _PyObject_Dump() detects freed memory (GH-10061) | Victor Stinner | 2018-10-23 | 2 | -23/+71 |
|
|
* | Fix issue 34551 - remove redundant store (#9009) | Eric Lippert | 2018-10-22 | 1 | -1/+1 |
|
|
* | bpo-34984: Improve error messages for bytes and bytearray constructors. (GH-9... | Serhiy Storchaka | 2018-10-21 | 2 | -6/+23 |
|
|
* | bpo-34973: Fix crash in bytes constructor. (GH-9841) | Serhiy Storchaka | 2018-10-21 | 1 | -35/+69 |
|
|
* | bpo-34574: Prevent OrderedDict iterators from exhaustion during pickling. (GH... | Sergey Fedoseev | 2018-10-20 | 1 | -28/+9 |
|
|
* | bpo-34573: Simplify __reduce__() of set and dict iterators. (GH-9050) | Sergey Fedoseev | 2018-10-20 | 2 | -59/+7 |
|
|
* | bpo-33712: OrderedDict only creates od_fast_nodes cache if needed (GH-7349) | Serhiy Storchaka | 2018-10-19 | 1 | -50/+18 |
|
|
* | bpo-33073: Rework int.as_integer_ratio() implementation (GH-9303) | Serhiy Storchaka | 2018-10-19 | 1 | -6/+1 |
|
|
* | bpo-34974: Do not replace unexpected errors in bytes() and bytearray(). (GH-9... | Serhiy Storchaka | 2018-10-14 | 2 | -3/+5 |
|
|