summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* gh-117657: Make Py_TYPE and Py_SET_TYPE thread safe (GH-120165)Ken Jin2024-06-121-1/+7
* gh-120198: Fix race condition when editing __class__ with an audit hook activ...Ken Jin2024-06-111-1/+2
* gh-120298: Fix use-after-free in `list_richcompare_impl` (#120303)Nikita Sobolev2024-06-111-1/+8
* bpo-24766: doc= argument to subclasses of property not handled correctly (GH-...E. M. Bray2024-06-101-15/+4
* gh-119258: Eliminate Type Guards in Tier 2 Optimizer with Watcher (GH-119365)Saul Shanabrook2024-06-081-11/+67
* gh-120155: Fix copy/paste error in HAVE_SUBOFFSETS_IN_LAST_DIM() (#120228)Victor Stinner2024-06-071-1/+1
* gh-120080: Accept ``None`` as a valid argument for direct call of the ``int._...Kirill Podoprigora2024-06-072-6/+6
* gh-119999: Fix potential race condition in `_Py_ExplicitMergeRefcount` (#120000)Sam Gross2024-06-041-8/+11
* gh-119879: str.find(): Utilize last character gap for two-way periodic needle...d.grigonis2024-06-041-28/+35
* gh-117398: Use Per-Interpreter State for the _datetime Static Types (gh-119929)Eric Snow2024-06-036-98/+194
* gh-117657: Fix race involving immortalizing objects (#119927)Sam Gross2024-06-032-3/+3
* gh-119057: Use better error messages for zero division (#119066)Nikita Sobolev2024-06-033-11/+9
* gh-116560: Add PyLong_GetSign() public function (#116561)Sergey B Kirpichev2024-06-031-0/+12
* gh-119786: move exception handling doc to InternalDocs (#119815)Irit Katriel2024-06-031-182/+0
* gh-119396: Optimize unicode_decode_utf8_writer() (#119957)Victor Stinner2024-06-031-5/+4
* gh-117657: Fix data races report by TSAN unicode-hash (gh-119907)Donghee Na2024-06-031-8/+11
* gh-119740: Remove deprecated trunc delegation (#119743)Mark Dickinson2024-06-021-32/+0
* gh-119775: Remove ability to create immutable types with mutable bases (#119776)Nikita Sobolev2024-06-021-10/+6
* gh-74929: PEP 667 C API documentation (gh-119379)Alyssa Coghlan2024-06-011-2/+7
* gh-119180: Lazily wrap annotations on classmethod and staticmethod (#119864)Jelle Zijlstra2024-05-311-1/+99
* gh-109218: Deprecate weird cases in the complex() constructor (GH-119620)Serhiy Storchaka2024-05-301-39/+100
* gh-109218: Improve documentation for the complex() constructor (GH-119687)Serhiy Storchaka2024-05-302-6/+12
* gh-119525: Fix deadlock with `_PyType_Lookup` and the GIL (#119527)Sam Gross2024-05-291-4/+7
* gh-119613: Use C99+ functions instead of Py_IS_NAN/INFINITY/FINITE (#119619)Sergey B Kirpichev2024-05-293-21/+21
* gh-119011: `type.__type_params__` now return an empty tuple (#119296)Nikita Sobolev2024-05-281-0/+4
* gh-119396: Optimize unicode_repr() (#119617)Victor Stinner2024-05-282-102/+129
* gh-117557: Improve error messages when a string, bytes or bytearray of length...Serhiy Storchaka2024-05-283-23/+78
* gh-111999: Fix the signature of str.format_map() (#119540)Serhiy Storchaka2024-05-251-1/+1
* gh-112075: Fix dict thread safety issues (#119288)Germán Méndez Bravo2024-05-241-25/+41
* GH-117195: Avoid assertion error in `object.__sizeof__` (GH-117220)Mark Shannon2024-05-231-2/+5
* Tiny fix: Update link for HAC algorithm (gh-118546)Ayato Hayashi2024-05-231-2/+2
* gh-119396: Optimize PyUnicode_FromFormat() UTF-8 decoder (#119398)Victor Stinner2024-05-221-62/+141
* gh-119247: Add macros to use PySequence_Fast safely in free-threaded build (#...Josh {*()} Rosenberg2024-05-221-3/+5
* gh-117657: Fix missing atomic in dict_resize (#119312)Dino Viehland2024-05-221-1/+1
* Remove almost all unpaired backticks in docstrings (#119231)Geoffrey Thomas2024-05-222-12/+12
* gh-119180: PEP 649: Add __annotate__ attributes (#119209)Jelle Zijlstra2024-05-223-16/+268
* gh-119180: Add LOAD_COMMON_CONSTANT opcode (#119321)Jelle Zijlstra2024-05-221-1/+1
* gh-111389: Add PyHASH_MULTIPLIER constant (#119214)Victor Stinner2024-05-211-1/+1
* gh-109176: replace _PyFrame_OpAlreadyRan by an assertion that the frame is co...Irit Katriel2024-05-211-33/+2
* gh-119053: Implement the fast path for list.__getitem__ (gh-119112)Donghee Na2024-05-211-5/+10
* gh-118921: Add `copy()` method for `FrameLocalsProxy` (#118923)Tian Gao2024-05-101-0/+19
* gh-118702: Implement vectorcall for BaseException (#118703)Victor Stinner2024-05-101-0/+40
* Rename `notimplemented_methods` into `nodefault_methods` (#118896)Nikita Sobolev2024-05-101-4/+4
* Fix some missing null checks. (GH-118721)Steve Dower2024-05-101-5/+8
* gh-118561: Fix crash involving list.extend in free-threaded build (#118723)Sam Gross2024-05-091-1/+2
* gh-118849: Fix "code will never be executed" warning in `dictobject.c` (#118850)Nikita Sobolev2024-05-091-1/+1
* gh-117657: Fix data races when writing / reading `ob_gc_bits` (#118292)mpage2024-05-081-1/+1
* gh-118767: Make bool(NotImplemented) raise TypeError (#118775)Jelle Zijlstra2024-05-081-7/+3
* gh-118746: Fix crash in frame_getlocals and _PyFrame_GetLocals (#118748)Tian Gao2024-05-081-0/+18
* gh-110209: Add __class_getitem__ for generator and coroutine (#110212)James Hilton-Balfe2024-05-071-0/+2