summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* bpo-39573: Use Py_SET_SIZE() function (GH-18402)Victor Stinner2020-02-077-54/+61
* bpo-39573: Add Py_SET_SIZE() function (GH-18400)Victor Stinner2020-02-071-1/+1
* bpo-39573: Use Py_TYPE() macro in object.c (GH-18398)Victor Stinner2020-02-071-12/+8
* bpo-39573: Add Py_SET_TYPE() function (GH-18394)Victor Stinner2020-02-075-11/+15
* bpo-39573: Use Py_TYPE() macro in Objects directory (GH-18392)Victor Stinner2020-02-0720-109/+109
* bpo-39573: Use Py_TYPE() in abstract.c (GH-18390)Victor Stinner2020-02-071-94/+94
* bpo-39573: Add Py_SET_REFCNT() function (GH-18389)Victor Stinner2020-02-073-7/+8
* bpo-39573: Use Py_REFCNT() macro (GH-18388)Victor Stinner2020-02-066-28/+30
* bpo-39542: Declare _Py_AddToAllObjects() in pycore_object.h (GH-18368)Victor Stinner2020-02-051-1/+1
* Add PyInterpreterState.fs_codec.utf8 (GH-18367)Victor Stinner2020-02-051-46/+47
* bpo-39542: Make PyObject_INIT() opaque in limited C API (GH-18363)Victor Stinner2020-02-051-4/+8
* bpo-39543: Remove unused _Py_Dealloc() macro (GH-18361)Victor Stinner2020-02-051-2/+0
* bpo-39542: Make _Py_NewReference() opaque in C API (GH-18346)Victor Stinner2020-02-051-1/+17
* Restore PyObject_IsInstance() comment (GH-18345)Victor Stinner2020-02-041-17/+23
* bpo-39542: Simplify _Py_NewReference() (GH-18332)Victor Stinner2020-02-035-28/+40
* Fixes in sorting descriptions (GH-18317)Stefan Pochmann2020-02-031-8/+8
* bpo-39489: Remove COUNT_ALLOCS special build (GH-18259)Victor Stinner2020-02-035-234/+0
* bpo-36051: Fix compiler warning. (GH-18325)Inada Naoki2020-02-031-1/+1
* Fix 5-space indentation and trailing whitespace (GH-18311)Mark Dickinson2020-02-021-11/+11
* bpo-39487: Merge duplicated _Py_IDENTIFIER identifiers in C code (GH-18254)Hai Shi2020-01-308-22/+17
* bpo-39434: Improve float __floordiv__ performance and error message (GH-18147)Dong-hee Na2020-01-301-31/+39
* bpo-38631: Add _Py_NO_RETURN to functions calling Py_FatalError() (GH-18278)Victor Stinner2020-01-302-4/+4
* bpo-38631: Avoid Py_FatalError() in unicodeobject.c (GH-18281)Victor Stinner2020-01-301-23/+28
* bpo-38631: Replace tp_new_wrapper() fatal error with SystemError (GH-18262)Victor Stinner2020-01-301-2/+6
* bpo-38631: Avoid Py_FatalError() in init_slotdefs() (GH-18263)Victor Stinner2020-01-302-16/+25
* bpo-38631: Replace Py_FatalError() with _PyObject_ASSERT_FAILED_MSG() (GH-18258)Victor Stinner2020-01-302-32/+32
* Remove deadcode in _Py_inc_count() (GH-18257)Victor Stinner2020-01-291-2/+0
* bpo-36051: Drop GIL during large bytes.join() (GH-17757)Bruce Merry2020-01-291-17/+40
* bpo-38631: Avoid Py_FatalError() in PyCode_New() (GH-18215)Victor Stinner2020-01-271-26/+46
* bpo-38631: Avoid Py_FatalError() in _memory_release() (GH-18214)Victor Stinner2020-01-271-1/+2
* bpo-38631: Avoid Py_FatalError() in PyModule_Create2() (GH-18212)Victor Stinner2020-01-271-2/+5
* bpo-39453: Add testcase for bpo-39453 (GH-18202)Dong-hee Na2020-01-271-1/+1
* bpo-39453: Make list.__contains__ hold strong references to avoid crashes (GH...Dong-hee Na2020-01-271-1/+6
* bpo-39425: Fix list.count performance regression (GH-18119)Dong-hee Na2020-01-221-0/+4
* closes bpo-39415: Remove unused codes from longobject.c complexobject.c float...Dong-hee Na2020-01-223-68/+0
* bpo-33387: Fix compiler warning in frame_block_unwind() (GH-18099)Victor Stinner2020-01-211-1/+1
* bpo-39386: Prevent double awaiting of async iterator (GH-18081)Andrew Svetlov2020-01-201-4/+12
* bpo-39372: Clean header files of declared interfaces with no implementations ...Pablo Galindo2020-01-185-13/+0
* bpo-31031: Unify duplicate bits_in_digit and bit_length (GH-2866)Niklas Fiekas2020-01-161-29/+9
* bpo-39200: Correct the error message for range() empty constructor (GH-17813)Pablo Galindo2020-01-051-29/+44
* Document CodeType.replace (GH-17776)Anthony Sottile2020-01-012-4/+4
* bpo-38588: Optimize list comparison. (GH-17766)Inada Naoki2019-12-311-0/+3
* bpo-38588: Fix possible crashes in dict and list when calling PyObject_RichCo...Dong-hee Na2019-12-312-0/+9
* bpo-38610: Fix possible crashes in several list methods (GH-17022)Zackery Spytz2019-12-301-3/+12
* closes bpo-30364: Replace deprecated no_address_safety_analysis attribute. (G...Batuhan Taşkaya2019-12-271-7/+7
* bpo-38858: Small integer per interpreter (GH-17315)Victor Stinner2019-12-171-31/+28
* bpo-38629: implement __floor__ and __ceil__ for float type (GH-16985)Batuhan Taşkaya2019-12-152-1/+67
* bpo-27961: Replace PY_LLONG_MAX, PY_LLONG_MIN and PY_ULLONG_MAX with standard...Sergey Fedoseev2019-12-051-5/+5
* Fix compiler warning in Objects/unicodeobject.c (GH-17440)Pablo Galindo2019-12-021-1/+1
* bpo-38922: Raise code.__new__ audit event when code object replace() is calle...Steve Dower2019-11-271-0/+7