aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* [3.8] bpo-33930: Fix segfault with deep recursion when cleaning method object...Łukasz Langa2021-08-111-1/+5
* bpo-44872: use new trashcan macros in framobject.c (GH-27683) (GH-27692)Irit Katriel2021-08-101-2/+2
* bpo-42800: Add audit events for f_code and tb_frame (GH-24182)Miss Islington (bot)2021-05-032-7/+9
* bpo-43962: Fix _PyInterpreterState_IDIncref() (GH-25683) (GH-25686)Victor Stinner2021-04-281-3/+9
* bpo-42924: Fix incorrect copy in bytearray_repeat (GH-24208) (#24212)Miss Islington (bot)2021-04-261-2/+4
* bpo-35883: Py_DecodeLocale() escapes invalid Unicode characters (GH-24843) (G...Miss Islington (bot)2021-03-291-4/+5
* [3.8] bpo-40052: Fix alignment issue in PyVectorcall_Function() (GH-23999) (G...Petr Viktorin2021-01-121-1/+2
* [3.8] bpo-42425: Fix possible leak in initialization of errmap for OSError (G...Serhiy Storchaka2021-01-011-1/+3
* bpo-42536: GC track recycled tuples (GH-23623) (GH-23652)Brandt Bucher2020-12-073-0/+26
* bpo-42412: Fix possible leaks and check arguments in PyType_FromModuleAndSpec...Miss Islington (bot)2020-11-211-5/+18
* bpo-42143: Ensure PyFunction_NewWithQualName() can't fail after creating the ...Miss Skeleton (bot)2020-10-291-13/+16
* bpo-42065: Fix incorrectly formatted _codecs.charmap_decode error message (GH...Miss Skeleton (bot)2020-10-181-1/+1
* bpo-41984: GC track all user classes (GH-22701/GH-22707)Miss Skeleton (bot)2020-10-151-16/+6
* [3.8] bpo-41909: Enable previously disabled recursion checks. (GH-22536) (GH-...Serhiy Storchaka2020-10-052-4/+0
* bpo-41654: Explicitly cast PyExc_MemoryError to PyTypeObject to avoid warning...Pablo Galindo2020-09-051-2/+3
* [3.8] [3.9] bpo-41654: Fix deallocator of MemoryError to account for subclass...Pablo Galindo2020-09-011-2/+12
* bpo-41295: Reimplement the Carlo Verre "hackcheck" (GH-21528)Miss Islington (bot)2020-07-181-7/+20
* bpo-41175: Guard against a NULL pointer dereference within bytearrayobject (G...Miss Islington (bot)2020-07-101-1/+3
* bpo-39960: Allow heap types in the "Carlo Verre" hack check that override "tp...scoder2020-07-051-11/+30
* bpo-40824: Do not mask errors in __iter__ in "in" and the operator module. (G...Miss Islington (bot)2020-06-221-1/+3
* Fix a possible refleak in tupleobject.c (GH-19018)Miss Islington (bot)2020-03-151-1/+3
* bpo-39884: Add method name in "bad call flags" error (GH-18944) (GH-18956)Victor Stinner2020-03-122-2/+4
* [3.8] bpo-38643: Raise SystemError instead of crashing when PyNumber_ToBase i...Serhiy Storchaka2020-03-121-9/+6
* [3.8] bpo-39778: Don't traverse weak-reference lists OrderedDict's tp_travers...Pablo Galindo2020-03-021-2/+0
* Give proper credits for the memoryview implementation. (GH-18626) (#18642)Miss Islington (bot)2020-02-241-1/+11
* bpo-39382: Avoid dangling object use in abstract_issubclass() (GH-18530)Miss Islington (bot)2020-02-221-3/+9
* [3.8] bpo-39453: Fix contains method of list to hold strong references (GH-18...Dong-hee Na2020-02-171-3/+7
* [3.8] closes bpo-39630: Update pointers to string literals to be const char *...Benjamin Peterson2020-02-131-2/+2
* [3.8] bpo-39606: allow closing async generators that are already closed (GH-1...Miss Islington (bot)2020-02-131-4/+11
* bpo-39605: Remove a cast that causes a warning. (GH-18473)Miss Islington (bot)2020-02-111-1/+1
* closes bpo-39605: Fix some casts to not cast away const. (GH-18453)Miss Islington (bot)2020-02-116-31/+31
* Fixes in sorting descriptions (GH-18317)Miss Islington (bot)2020-02-031-8/+8
* bpo-39425: Fix list.count performance regression (GH-18119) (GH-18120)Miss Islington (bot)2020-01-221-0/+4
* closes bpo-39415: Remove unused codes from longobject.c complexobject.c float...Miss Islington (bot)2020-01-213-68/+0
* bpo-39386: Prevent double awaiting of async iterator (GH-18081)Miss Islington (bot)2020-01-201-4/+12
* bpo-38400 Don't check for NULL linked list pointers in _PyObject_IsFreed (GH-...Miss Islington (bot)2020-01-191-1/+4
* Document CodeType.replace (GH-17776)Miss Islington (bot)2019-12-312-4/+4
* [3.8] bpo-38588: Fix possible crashes in dict and list when calling P… (GH-...Dong-hee Na2019-12-312-0/+12
* bpo-38610: Fix possible crashes in several list methods (GH-17022)Miss Islington (bot)2019-12-301-3/+12
* closes bpo-30364: Replace deprecated no_address_safety_analysis attribute. (G...Miss Islington (bot)2019-12-261-7/+7
* bpo-38922: Raise code.__new__ audit event when code object replace() is calle...Miss Islington (bot)2019-11-261-0/+7
* bpo-35409: Ignore GeneratorExit in async_gen_athrow_throw (GH-14755)Miss Islington (bot)2019-11-191-0/+11
* bpo-38555: Fix an undefined behavior. (GH-16883)Miss Skeleton (bot)2019-10-231-8/+7
* bpo-38525: Fix a segmentation fault when using reverse iterators of empty dic...Miss Islington (bot)2019-10-191-2/+7
* [3.8] bpo-36389: Backport debug enhancements from master (GH-16796)Victor Stinner2019-10-156-158/+149
* Fix strict-aliasing rules errors on gcc 4.8.5. (GH-16714)Miss Islington (bot)2019-10-131-1/+1
* bpo-38409: Fix grammar in str.strip() docstring (GH-16682) (GH-16684)Miss Islington (bot)2019-10-092-4/+4
* [3.8] bpo-38395: Fix ownership in weakref.proxy methods (GH-16632) (GH-16662)Pablo Galindo2019-10-081-31/+88
* bpo-38383: Fix possible integer overflow in startswith() of bytes and bytearr...Miss Islington (bot)2019-10-061-1/+1
* Restore tp_clear for function object. (#16502)Neil Schemenauer2019-10-011-13/+21