summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* [3.6] bpo-30978: str.format_map() now passes key lookup exceptions through. (...Serhiy Storchaka2017-08-031-6/+10
* [3.6] bpo-22207: Add checks for possible integer overflows in unicodeobject.c...Serhiy Storchaka2017-07-111-6/+12
* [3.6] bpo-30597: Show expected input in custom 'print' error message. (GH-2531)Nick Coghlan2017-07-031-3/+45
* [3.6] bpo-13617: Reject embedded null characters in wchar* strings. (GH-2302)...Serhiy Storchaka2017-06-281-0/+14
* bpo-30704, bpo-30604: Fix memleak in code_dealloc() (#2455) (#2456)Victor Stinner2017-06-281-1/+2
* [3.6] bpo-30708: Check for null characters in PyUnicode_AsWideCharString(). (...Serhiy Storchaka2017-06-271-0/+31
* [3.6] bpo-30730: Prevent environment variables injection in subprocess on Win...Serhiy Storchaka2017-06-231-2/+2
* [3.6] bpo-30604: Move co_extra_freefuncs to interpreter state to avoid crashe...Dino Viehland2017-06-131-11/+17
* bpo-30524: Fix _PyStack_UnpackDict() (#1886)Victor Stinner2017-06-092-11/+11
* [3.6] bpo-27945: Fixed various segfaults with dict. (GH-1657) (#1677)Serhiy Storchaka2017-05-201-25/+44
* [3.6] bpo-25794: Fix `type.__setattr__()` for non-interned attribute names. (...Serhiy Storchaka2017-05-201-5/+34
* bpo-30281: Fix the default value for stop in PySlice_Unpack() (#1480) (#1529)Xiang Zhang2017-05-101-3/+5
* bpo-29802: Fix the cleaning up issue in PyUnicode_FSDecoder(). (#1217)Serhiy Storchaka2017-04-201-0/+1
* [3.6] bpo-12414: Update code_sizeof() to take in account co_extra memory. (#1...Dong-hee Na2017-04-201-3/+7
* bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() (#1096...Serhiy Storchaka2017-04-191-3/+9
* [3.6] bpo-29549: Fixes docstring for str.index (GH-256) (GH-1028)Mariatta2017-04-092-5/+20
* bpo-29998: Pickling and copying ImportError now preserves name and path (#101...Serhiy Storchaka2017-04-081-0/+48
* Expand the PySlice_GetIndicesEx macro. (#1023) (#1044)Serhiy Storchaka2017-04-086-20/+23
* bpo-29941: Assert fixes (#886) (#955)T. Wouters2017-04-022-2/+2
* bpo-29949: Fix set memory usage regression (GH-945)INADA Naoki2017-04-011-6/+5
* bpo-28810: Update lnotab_notes.txt (GH-665) (GH-919)Mariatta2017-03-311-22/+28
* bpo-29935: Fixed error messages in the index() method of tuple, list and dequ...Serhiy Storchaka2017-03-302-4/+4
* bpo-29864: Don't use Py_SIZE for dict object. (#747) (#750)Serhiy Storchaka2017-03-221-1/+1
* bpo-28876: bool of large range raises OverflowError (#699) (#734)Serhiy Storchaka2017-03-201-1/+11
* bpo-29116: Fix error messages for concatenating bytes and bytearray with unsu...Serhiy Storchaka2017-03-192-2/+2
* bpo-28856: Let %b format for bytes support objects that follow the buffer pro...Xiang Zhang2017-03-141-1/+14
* Fix wrapping into StopIteration of return values in generators and coroutines...Yury Selivanov2017-03-121-2/+1
* [3.6] bpo-29714: Fix a regression that bytes format may fail when containing ...Xiang Zhang2017-03-061-2/+2
* bpo-29683 - Fixes to _PyCode_SetExtra when co_extra->ce->extras is (#402)Brian Coleman2017-03-021-10/+14
* bpo-29602: fix signed zero handling in complex constructor. (#203) (#206)Mark Dickinson2017-02-201-3/+3
* bpo-24274: fix erroneous comment in dictobject.c (GH-200)INADA Naoki2017-02-201-1/+2
* bpo-29347: Fix possibly dereferencing undefined pointers when creating weakre...Xiang Zhang2017-02-201-0/+2
* bpo-29438: fixed use-after-free in key sharing dict (#39)INADA Naoki2017-02-131-3/+7
* Issue #27867: Function PySlice_GetIndicesEx() is replaced with a macro ifSerhiy Storchaka2017-01-251-24/+54
|\
| * Issue #27867: Function PySlice_GetIndicesEx() is replaced with a macro ifSerhiy Storchaka2017-01-251-24/+54
* | Issue #29337: Fixed possible BytesWarning when compare the code objects.Serhiy Storchaka2017-01-241-3/+3
|\ \ | |/
| * Issue #29337: Fixed possible BytesWarning when compare the code objects.Serhiy Storchaka2017-01-241-3/+3
* | Merge doc fixes from 3.5Martin Panter2017-01-141-1/+1
|\ \ | |/
| * Fix grammar, typos and markup in documentation and code commentsMartin Panter2017-01-141-1/+1
* | Issue #28969: Fixed race condition in C implementation of functools.lru_cache.Serhiy Storchaka2017-01-121-8/+23
|\ \ | |/
| * Issue #28969: Fixed race condition in C implementation of functools.lru_cache.Serhiy Storchaka2017-01-121-8/+23
* | Issue #29145: Merge 3.5.Xiang Zhang2017-01-101-6/+8
|\ \ | |/
| * Issue #29145: Fix overflow checks in str.replace() and str.join().Xiang Zhang2017-01-101-6/+8
* | Issue #29159: Fix regression in bytes(x) when x.__index__() raises Exception.INADA Naoki2017-01-062-17/+25
* | Merge 3.5.Stefan Krah2016-12-301-1/+1
|\ \ | |/
| * Issue #29111: Fix memoryview signature.Stefan Krah2016-12-301-1/+1
| * Issue #29073: bytearray formatting no longer truncates on first null byte.Serhiy Storchaka2016-12-281-1/+3
* | Issue #28427: old keys should not remove new values fromAntoine Pitrou2016-12-271-17/+74
|\ \ | |/
| * Issue #28427: old keys should not remove new values fromAntoine Pitrou2016-12-271-25/+56
* | Issue #29044: Merge 3.5.Xiang Zhang2016-12-221-3/+4
|\ \ | |/