summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* [3.6] bpo-31655: Validate keyword names in SimpleNamespace constructor. (GH-3...Miss Islington (bot)2017-10-071-1/+5
* [3.6] bpo-31619: Fixed a ValueError when convert a string with large number o...Miss Islington (bot)2017-10-031-4/+4
* [3.6] bpo-31492: Fix assertion failures in case of a module with a bad __name...Serhiy Storchaka2017-09-271-4/+1
* [3.6] bpo-31579: Fixed a possible leak in enumerate() with large indices. (GH...Serhiy Storchaka2017-09-261-3/+9
* [3.6] bpo-30923: Silence fall-through warnings included in -Wextra since gcc-...Victor Stinner2017-09-122-4/+5
* [3.6] bpo-31373: remove overly strict float range checks (GH-3486) (#3495)Benjamin Peterson2017-09-121-2/+2
* Backport docstring improvements to OrderedDict. (GH-3470)Henk-Jaap Wagenaar2017-09-111-4/+6
* [3.6] bpo-31393: Fix the use of PyUnicode_READY(). (GH-3451). (#3453)Serhiy Storchaka2017-09-083-7/+16
* [3.6] fixes bpo-31373: fix undefined floating-point demotions (GH-3396) (#3424)Miss Islington (bot)2017-09-071-4/+6
* [3.6] bpo-30662: fixed OrderedDict.__init__ docstring re PEP 468 (GH-2179) (G...Mariatta2017-09-061-2/+1
* bpo-31095: fix potential crash during GC (GH-3195)INADA Naoki2017-09-042-0/+9
* bpo-31161: only check for parens error for SyntaxError (#3083)Martijn Pieters2017-08-221-5/+10
* [3.6] bpo-31232: Backport custom print rshift message (GH-3155)Nick Coghlan2017-08-191-0/+15
* [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