summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* bpo-29464: Rename METH_FASTCALL to METH_FASTCALL|METH_KEYWORDS and make (#1955)Serhiy Storchaka2017-07-0312-186/+83
* [security] bpo-13617: Reject embedded null characters in wchar* strings. (#2302)Serhiy Storchaka2017-06-281-0/+14
* bpo-30704, bpo-30604: Fix memleak in code_dealloc() (#2455)Victor Stinner2017-06-281-1/+2
* bpo-30708: Check for null characters in PyUnicode_AsWideCharString(). (#2285)Serhiy Storchaka2017-06-271-27/+22
* bp-29304: Simplify dictobject.c (GH-2347)INADA Naoki2017-06-241-6/+6
* bpo-30730: Prevent environment variables injection in subprocess on Windows. ...Serhiy Storchaka2017-06-231-2/+2
* bpo-29304: simplify lookdict_index() function. (GH-2273)INADA Naoki2017-06-231-15/+6
* bpo-30736: upgrade to Unicode 10.0 (#2344)Benjamin Peterson2017-06-231-2262/+2295
* bpo-30604: clean up co_extra support (#2144)Dino Viehland2017-06-211-12/+18
* bpo-30597: Show expected input in custom 'print' error message. (#2009)Sanyam Khurana2017-06-201-3/+45
* bpo-30600: Fix error messages (condition order in Argument Clinic) (#2051)Sylvain2017-06-107-110/+110
* bpo-30486: Allow setting cell value (#1840)Lisa Roach2017-06-081-1/+10
* bpo-30592: Fixed error messages for some builtins. (#1996)Serhiy Storchaka2017-06-085-6/+6
* bpo-30534: Fixed error messages when pass keyword arguments (#1901)Serhiy Storchaka2017-06-062-25/+26
* bpo-30509: Clean up calling type slots. (#1883)Serhiy Storchaka2017-06-011-68/+26
* bpo-27945: Fixed various segfaults with dict. (#1657)Serhiy Storchaka2017-05-201-25/+43
* bpo-25794: Fix `type.__setattr__()` for non-interned attribute names. (#1652)Serhiy Storchaka2017-05-201-6/+33
* bpo-28974: `object.__format__(x, '')` is now equivalent to `str(x)` (#506)Serhiy Storchaka2017-05-131-9/+1
* bpo-30341: Improve _PyTrash_thread_destroy_chain() a little bit (#1545)Xiang Zhang2017-05-131-2/+15
* bpo-30281: Fix the default value for stop in PySlice_Unpack() (#1480)Xiang Zhang2017-05-101-3/+5
* bpo-29867: Add asserts in PyTuple_GET_SIZE, PyList_GET_SIZE and PySet_GET_SIZ...Serhiy Storchaka2017-04-211-1/+1
* bpo-29802: Fix reference counting in module-level struct functions (#1213)Serhiy Storchaka2017-04-201-0/+1
* bpo-12414: Update code_sizeof() to take in account co_extra memory. (#1168)Dong-hee Na2017-04-201-2/+6