summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* [3.13] gh-127521: Mark list as "shared" before resizing if necessary (GH-1275...Miss Islington (bot)2024-12-031-0/+20
* [3.13] gh-113841: fix possible undefined division by 0 in _Py_c_pow() (GH-127...Miss Islington (bot)2024-12-021-1/+1
* [3.13] Fix Unicode encode_wstr_utf8() (#127420) (#127505)Bénédikt Tran2024-12-021-1/+1
* [3.13] gh-127316: fix incorrect assertion in setting `__class__` in free-thre...Miss Islington (bot)2024-11-291-1/+1
* [3.13] gh-127020: Make `PyCode_GetCode` thread-safe for free threading (GH-12...Miss Islington (bot)2024-11-211-27/+51
* [3.13] gh-126980: Fix `bytearray.__buffer__` crash on `PyBUF_{READ,WRITE}` (G...sobolevn2024-11-191-4/+4
* [3.13] gh-126594: Fix typeobject.c wrap_buffer() cast (GH-126754) (#127004)Miss Islington (bot)2024-11-191-3/+3
* [3.13] gh-126341: add release check to `__iter__` method of `memoryview` (GH-...Miss Islington (bot)2024-11-131-0/+1
* [3.13] gh-116510: Fix a Crash Due to Shared Immortal Interned Strings (gh-124...Miss Islington (bot)2024-11-122-18/+86
* [3.13] gh-126303: Fix pickling and copying of os.sched_param objects (GH-1263...Miss Islington (bot)2024-11-051-0/+6
* [3.13] gh-116938: Fix `dict.update` docstring and remove erraneous full stop ...Miss Islington (bot)2024-10-291-2/+2
* [3.13] gh-125608: Trigger dictionary watchers when inline values change (GH-1...Miss Islington (bot)2024-10-251-6/+15
* [3.13] gh-123930: Better error for "from imports" when script shadows module ...Shantanu2024-10-241-12/+16
* [3.13] gh-125590: Allow FrameLocalsProxy to delete and pop keys from extra lo...Miss Islington (bot)2024-10-211-6/+70
* [3.13] gh-125221: Fix free-threading data race in `object.__reduce_ex__` (GH-...Miss Islington (bot)2024-10-112-15/+13
* [3.13] gh-123378: fix a crash in `UnicodeError.__str__` (GH-124935) (#125099)Miss Islington (bot)2024-10-081-45/+66
* [3.13] Fix typos (#123775) (#123866)Victor Stinner2024-10-073-3/+3
* [3.13] gh-124785: Revert "gh-116510: Fix crash due to shared immortal interne...Miss Islington (bot)2024-10-011-42/+6
* [3.13] gh-124642: Dictionaries aren't marking objects as weakref'd (GH-124643...Miss Islington (bot)2024-09-301-3/+3
* [3.13] gh-123339: Fix cases of inconsistency of __module__ and __firstlineno_...Serhiy Storchaka2024-09-301-0/+3
* [3.13] gh-123826: Fix unused function warnings in mimalloc on NetBSD (GH-1238...Miss Islington (bot)2024-09-301-2/+2
* [3.13] gh-77894: Fix a crash when the GC breaks a loop containing a memoryvie...Miss Islington (bot)2024-09-301-28/+27
* [3.13] gh-124513: Check args in framelocalsproxy_new() (GH-124515) (#124539)Miss Islington (bot)2024-09-301-3/+20
* [3.13] gh-124498: Fix `TypeAliasType` not to be generic, when `type_params=()...Miss Islington (bot)2024-09-301-1/+10
* [3.13] GH-124547: Clear instance dictionary if memory error occurs during obj...Miss Islington (bot)2024-09-271-2/+9
* [3.13] gh-119004: fix a crash in equality testing between `OrderedDict` (GH-1...Miss Islington (bot)2024-09-271-8/+25
* [3.13] gh-116510: Fix crash due to shared immortal interned strings. (gh-1246...Miss Islington (bot)2024-09-271-6/+42
* [3.13] gh-124538: Fix crash when using `gc.get_referents` on an untracked cap...Miss Islington (bot)2024-09-261-3/+7
* [3.13] gh-123091: Use more _Py_IsImmortalLoose() (GH-123602) (GH-123622)Petr Viktorin2024-09-031-1/+1
* [3.13] gh-123091: Use _Py_IsImmortalLoose() (#123511) (#123600)Victor Stinner2024-09-022-7/+7
* [3.13] gh-122688: Fix support of var-positional parameter in Argument Clinic ...Serhiy Storchaka2024-09-021-12/+6
* [3.13] gh-122527: Fix a crash on deallocation of `PyStructSequence` (GH-12257...Miss Islington (bot)2024-09-021-6/+22
* [3.13] gh-123448: Move `_PyNoDefault_Type` to the static types array (GH-1234...Miss Islington (bot)2024-08-291-0/+1
* [3.13] gh-122982: Extend the deprecation period for bool inversion by two yea...Miss Islington (bot)2024-08-251-2/+2
* [3.13] GH-120097: Make FrameLocalsProxy a mapping (GH-120101) (GH-120749)Miss Islington (bot)2024-08-231-1/+1
* [3.13] gh-123083: Fix a potential use-after-free in ``STORE_ATTR_WITH… (#12...Donghee Na2024-08-221-0/+2
* [3.13] gh-123022: Fix crash with `Py_Initialize` in background thread (GH-12...Miss Islington (bot)2024-08-171-4/+12
* [3.13] gh-122888: Fix crash on certain calls to str() (GH-122889) (#122947)Miss Islington (bot)2024-08-121-1/+10
* [3.13] gh-120974: Make asyncio `swap_current_task` safe in free-threaded buil...Miss Islington (bot)2024-08-021-16/+38
* [3.13] gh-120906: Support arbitrary hashable keys in FrameLocalsProxy (GH-122...Petr Viktorin2024-07-311-56/+76
* [3.13] gh-116622: Fix testPyObjectPrintOSError on Android (GH-122487) (#122490)Miss Islington (bot)2024-07-311-2/+9
* [3.13] gh-122208: Don't delivery PyDict_EVENT_ADDED until it can't fail (#122...Dino Viehland2024-07-301-11/+8
* [3.13] gh-117482: Fix the Slot Wrapper Inheritance Tests (gh-122249)Eric Snow2024-07-291-4/+19
* [3.13] gh-122291: Intern latin-1 one-byte strings at startup (GH-122303) (GH-...Miss Islington (bot)2024-07-271-27/+9
* [3.13] GH-121832: Assert that the version number of static builtin types is n...Miss Islington (bot)2024-07-251-0/+2
* [3.13] gh-116322: Fix typo in the GH-ifdef check (GH-122268) (#122284)Miss Islington (bot)2024-07-251-1/+1
* [3.13] gh-117482: Simplify the Fix For Builtin Types Slot Wrappers (gh-121932)Eric Snow2024-07-241-30/+93
* [3.13] gh-120974: Make _asyncio._leave_task atomic in the free-threaded build...Miss Islington (bot)2024-07-231-15/+15
* [3.13] gh-121266: Remove Py_ALWAYS_INLINE in dictobject.c (GH-121493) (#122095)Miss Islington (bot)2024-07-211-3/+3
* [3.13] gh-121266: Change dict check_lookup() return type to int (GH-121581) (...Miss Islington (bot)2024-07-201-11/+11