summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Expand the PySlice_GetIndicesEx macro. (#1023)Serhiy Storchaka2017-04-086-20/+23
* bpo-29914: Fix default implementations of __reduce__ and __reduce_ex__(). (#843)Serhiy Storchaka2017-04-082-38/+16
* Update Argument Clinic generated code for bpo-29878. (#1001)Serhiy Storchaka2017-04-054-6/+6
* bpo-29549: Fixes docstring for str.index (#256)Lisa Roach2017-04-052-5/+20
* bpo-29949: Fix set memory usage regression (GH-943)INADA Naoki2017-04-011-6/+5
* Fix spurious MemoryError introduced by PR #886. (#930)T. Wouters2017-03-311-4/+4
* bpo-29941: Assert fixes (#886)T. Wouters2017-03-313-5/+5
* bpo-29935: Fixed error messages in the index() method of tuple, list and dequ...Serhiy Storchaka2017-03-303-7/+7
* bpo-29816: Shift operation now has less opportunity to raise OverflowError. (...Serhiy Storchaka2017-03-301-22/+48
* bpo-24821: Fixed the slowing down to 25 times in the searching of some (#505)Serhiy Storchaka2017-03-301-6/+40
* bpo-29878: Add global instances of int for 0 and 1. (#852)Serhiy Storchaka2017-03-306-157/+69
* bpo-29927: Remove duplicate BufferError init and unnecessary semicolons (GH-866)Louie Lu2017-03-291-53/+51
* bpo-29924: Remove useless argument (#854)Sylvain2017-03-271-1/+1
* bpo-29894: Deprecate returning an instance of complex subclass from __complex...Serhiy Storchaka2017-03-241-10/+19
* bpo-29865: Use PyXXX_GET_SIZE macros rather than Py_SIZE for concrete types. ...Serhiy Storchaka2017-03-215-15/+18
* Don't use Py_SIZE for dict object. (#747)Serhiy Storchaka2017-03-211-1/+1
* bpo-28876: bool of large range raises OverflowError (#699)4kir42017-03-201-1/+11
* bpo-29116: Fix error messages for concatenating bytes and bytearray with unsu...Serhiy Storchaka2017-03-192-2/+2
* bpo-29116: Improve error message for concatenating str with non-str. (#710)Serhiy Storchaka2017-03-191-1/+10
* bpo-29748: Added the slice index converter in Argument Clinic. (#549)Serhiy Storchaka2017-03-191-3/+3
* bpo-29793: Convert some builtin types constructors to Argument Clinic. (#615)Serhiy Storchaka2017-03-1914-202/+527
* bpo-20186: Convert tuple object implementation to Argument Clinic. (#614)Serhiy Storchaka2017-03-192-46/+176
* bpo-20185: Convert typeobject.c to Argument Clinic. (#544)Serhiy Storchaka2017-03-192-76/+391
* bpo-29735: Optimize partial_call(): avoid tuple (#516)Victor Stinner2017-03-141-0/+16
* bpo-28810: Update lnotab_notes.txt (#665)Ivan Levkivskyi2017-03-141-22/+28
* bpo-29548: Recommend PyObject_Call APIs over PyEval_Call APIs. (GH-75)INADA Naoki2017-03-141-33/+24
* bpo-28856: Let %b format for bytes support objects that follow the buffer pro...Xiang Zhang2017-03-141-1/+14
* bpo-29730: replace some calls to PyNumber_Check and improve some error messag...Oren Milman2017-03-121-15/+19
* Fix wrapping into StopIteration of return values in generators and coroutines...Yury Selivanov2017-03-121-2/+1
* bpo-24037: Add Argument Clinic converter `bool(accept={int})`. (#485)Serhiy Storchaka2017-03-124-8/+8
* bpo-20185: Convert float object implementation to Argument Clinic. (#543)Serhiy Storchaka2017-03-112-156/+499
* bpo-20185: Convert list object implementation to Argument Clinic. (#542)Serhiy Storchaka2017-03-112-150/+523
* bpo-29749: Update int() docstring (GH-565)svelankar2017-03-091-1/+1
* Use Py_RETURN_FALSE/Py_RETURN_TRUE rather than PyBool_FromLong(0)/PyBool_From...Serhiy Storchaka2017-03-081-25/+25
* bpo-29568: Disable any characters between two percents for escaped percent "%...Serhiy Storchaka2017-03-082-17/+18
* bpo-24329: allow __qualname__ and __classcell__ in __slots__ (GH-495)Xiang Zhang2017-03-081-5/+11
* bpo-29737: Optimize concatenating with empty tuple. (#524)Serhiy Storchaka2017-03-061-0/+8
* bpo-29695: Remove bad keyword parameters in int(), bool(), float(), list() an...Serhiy Storchaka2017-03-065-39/+13
* bpo-29714: Fix a regression that bytes format may fail when containing zero ...Xiang Zhang2017-03-061-2/+2
* remove 3 redundant casts in Objects/longobject.c (#445)orenmn2017-03-061-3/+3
* bpo-29695: Deprecated using bad named keyword arguments in builtings: (#486)Serhiy Storchaka2017-03-055-0/+30
* bpo-29683 - Fixes to _PyCode_SetExtra when co_extra->ce->extras is (#376)Brian Coleman2017-03-021-10/+14
* bpo-29684: Fix regression of PyEval_CallObjectWithKeywords (GH-87)INADA Naoki2017-03-011-6/+7
* Document why functools.partial() must copy kwargs (#253)Victor Stinner2017-02-231-2/+2
* bpo-27660: remove unnecessary overflow checks in list_resize (GH-189)Xiang Zhang2017-02-221-12/+7
* bpo-29509: skip redundant intern (GH-197)INADA Naoki2017-02-211-1/+1
* bpo-29602: fix signed zero handling in complex constructor. (#203)Mark Dickinson2017-02-201-3/+3
* bpo-24274: fix erroneous comment in dictobject.c (GH-196)INADA Naoki2017-02-201-1/+2
* bpo-29347: Fix possibly dereferencing undefined pointers when creating weakre...Xiang Zhang2017-02-201-0/+2
* bpo-29548: Fix some inefficient call API usage (GH-97)INADA Naoki2017-02-164-30/+17