summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* 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
* bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() (#1096)Serhiy Storchaka2017-04-193-13/+13
* fix a refleak in slot_sq_length (#1162)Xiang Zhang2017-04-161-0/+1
* bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051)Serhiy Storchaka2017-04-161-1/+1
* bpo-29839: Raise ValueError rather than OverflowError in len() for negative v...Serhiy Storchaka2017-04-161-6/+13
* bpo-29838: Add asserts for checking results of sq_length and mq_length slots....Serhiy Storchaka2017-04-162-10/+26
* bpo-29998: Pickling and copying ImportError now preserves name and path (#1010)Serhiy Storchaka2017-04-081-0/+48
* 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