summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Move exc state to generator. Fixes bpo-25612 (#1773)Mark Shannon2017-10-222-23/+36
* bpo-31825: Fixed OverflowError in the 'unicode-escape' codec (#4058)Serhiy Storchaka2017-10-202-2/+2
* bpo-28280: Make PyMapping_Keys(), PyMapping_Values() and PyMapping_Items() al...Oren Milman2017-10-081-27/+49
* bpo-31655: Validate keyword names in SimpleNamespace constructor. (#3909)Serhiy Storchaka2017-10-071-1/+5
* bpo-31709: Drop support for asynchronous __aiter__. (#3903)Yury Selivanov2017-10-061-94/+0
* bpo-31619: Fixed a ValueError when convert a string with large number of unde...Serhiy Storchaka2017-10-031-4/+4
* bpo-31336: Speed up type creation. (#3279)scoder2017-10-011-52/+108
* bpo-31579: Fixed a possible leak in enumerate() with large indices. (#3753)Serhiy Storchaka2017-09-261-2/+6
* bpo-26491 Defer DECREFs until enumobject is in a consistent state (#3747)Raymond Hettinger2017-09-251-18/+30
* bpo-31410: Optimized calling wrapper and classmethod descriptors. (#3481)Serhiy Storchaka2017-09-211-29/+33
* bpo-27541: Reprs of subclasses of some classes now contain actual type name. ...Serhiy Storchaka2017-09-211-6/+10
* bpo-30486: Make cell_set_contents() symbol private (#3668)Victor Stinner2017-09-201-1/+1
* bpo-31506: Improve the error message logic for object.__new__ and object.__in...Serhiy Storchaka2017-09-201-10/+21
* bpo-31492: Fix assertion failures in case of a module with a bad __name__ att...Oren Milman2017-09-191-4/+1
* bpo-31497: Add private helper _PyType_Name(). (#3630)Serhiy Storchaka2017-09-173-25/+19
* bpo-28411: Support other mappings in PyInterpreterState.modules. (#3593)Eric Snow2017-09-151-3/+1
* bpo-31338 (#3374)Barry Warsaw2017-09-156-70/+46
* bpo-30860: Fix deadcode in obmalloc.c (#3499)Victor Stinner2017-09-141-2/+2
* bpo-28411: Isolate PyInterpreterState.modules (#3575)Eric Snow2017-09-142-5/+11
* bpo-30860: Fix a refleak. (#3567)Eric Snow2017-09-141-12/+15
* bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565)Eric Snow2017-09-143-25/+17
* bpo-31462: Remove trailing whitespaces. (#3564)Serhiy Storchaka2017-09-142-2/+2
* bpo-30860: Fix a refleak. (#3506)Eric Snow2017-09-121-12/+15
* bpo-31373: remove overly strict float range checks (#3486)Benjamin Peterson2017-09-111-2/+2
* replace custom table with pyctype (#3456)Benjamin Peterson2017-09-081-12/+1
* bpo-31393: Fix the use of PyUnicode_READY(). (#3451)Serhiy Storchaka2017-09-083-6/+16
* update all_name_chars comment after 9020ac7cce97dddad51b285fffc31fe4ddf60898 ...Benjamin Peterson2017-09-081-2/+1
* bpo-30860: Consolidate stateful runtime globals. (#3397)Eric Snow2017-09-0825-634/+206
* optimize all_name_chars (#3442)Benjamin Peterson2017-09-081-14/+14
* bpo-31344: Per-frame control of trace events (GH-3417)Nick Coghlan2017-09-081-0/+4
* bpo-31373: fix undefined floating-point demotions (#3396)Benjamin Peterson2017-09-071-4/+6
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-072-8/+0
* Revert "bpo-30860: Consolidate stateful runtime globals." (#3379)Eric Snow2017-09-064-171/+634
* bpo-30860: Consolidate stateful runtime globals. (#2594)Eric Snow2017-09-064-634/+171
* bpo-30662: fixed OrderedDict.__init__ docstring re PEP 468 (#2179)Jonathan Eunice2017-09-051-2/+1
* bpo-31347: _PyObject_FastCall_Prepend: do not call memcpy if args might not b...Benjamin Peterson2017-09-051-3/+3
* Fix terminology in comment and add more design rationale. (#3335)Raymond Hettinger2017-09-051-3/+10
* bpo-28411: Remove "modules" field from Py_InterpreterState. (#1638)Eric Snow2017-09-042-5/+10
* bpo-31279: Silence -Wstringop-overflow warning. (#3207)Stefan Krah2017-08-251-1/+1
* bpo-31095: fix potential crash during GC (GH-2974)INADA Naoki2017-08-242-0/+9
* bpo-31161: only check for parens error for SyntaxError (#3082)Martijn Pieters2017-08-221-5/+10
* bpo-30923: Silence fall-through warnings included in -Wextra since gcc-7.0. (...Stefan Krah2017-08-213-6/+7
* bpo-30721: Add missing '?' to new error message (GH-3131)Sanyam Khurana2017-08-181-1/+1
* bpo-30721: Show correct syntax hint in Py3 when using Py2 redirection syntax ...Sanyam Khurana2017-08-181-0/+15
* bpo-29304: Simplify dict lookup functions (GH-2407)INADA Naoki2017-08-033-270/+132
* bpo-30978: str.format_map() now passes key lookup exceptions through. (#2790)Serhiy Storchaka2017-08-031-6/+10
* bpo-30640: Fix undefined behavior in _PyFunction_FastCallDict() and PyEval_Ev...Zackery Spytz2017-07-311-1/+1
* bpo-22207: Add checks for possible integer overflows in unicodeobject.c. (#2623)Serhiy Storchaka2017-07-111-6/+12
* bpo-30878: Fix error message when keyword arguments are passed (#2635)Sylvain2017-07-091-4/+4
* bpo-30789: Use a single memory block for co_extra. (#2555)Serhiy Storchaka2017-07-041-39/+15