summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* [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
|\ \ | |/
| * Issue #29044: Fix a use-after-free in string '%c' formatter.Xiang Zhang2016-12-221-3/+4
| * Issue #28147: Fix a memory leak in split-table dictionariesINADA Naoki2016-12-201-6/+15
* | Issue #29000: Fixed bytes formatting of octals with zero padding in alternateSerhiy Storchaka2016-12-171-3/+2
|\ \ | |/
| * Issue #29000: Fixed bytes formatting of octals with zero padding in alternateSerhiy Storchaka2016-12-171-3/+2
* | Issue #26919: On Android, operating system data is now always encoded/decodedXavier de Gaye2016-12-151-3/+3
* | Fix a memory leak in split-table dictionariesVictor Stinner2016-12-151-5/+22
* | Merge from 3.6.Serhiy Storchaka2016-12-141-28/+1
|\ \ | |/
| * Revert changeset 1f31bf3f76f5 (issue5322) except tests.Serhiy Storchaka2016-12-141-28/+1
* | Fix typos in comment and documentationMartin Panter2016-12-101-1/+1