summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* gh-101892: Fix `SystemError` when a callable iterator call exhausts the itera...Raj2023-03-041-2/+2
* gh-102371: move _Py_Mangle from compile.c to symtable.c (#102372)Irit Katriel2023-03-021-1/+1
* Fix typos in documentation and comments (GH-102374)Michael K2023-03-021-2/+2
* gh-101101: Unstable C API tier (PEP 689) (GH-101102)Petr Viktorin2023-02-281-4/+5
* gh-101825: Clarify that as_integer_ratio() output is always normalized (#101843)Sergey B Kirpichev2023-02-274-20/+14
* gh-101765: unicodeobject: use Py_XDECREF correctly (#102283)Jelle Zijlstra2023-02-261-1/+1
* gh-101765: Fix refcount issues in list and unicode pickling (#102265)Jelle Zijlstra2023-02-262-1/+11
* gh-101765: Fix SystemError / segmentation fault in iter `__reduce__` when int...Ionite2023-02-247-23/+66
* GH-100719: Remove redundant `gi_code` field from generator object. (GH-100749)Mark Shannon2023-02-231-17/+55
* Revert "bpo-46978: Correct docstrings for in-place builtin operators #31802) ...Irit Katriel2023-02-231-1/+1
* gh-101907: Stop using `_Py_OPCODE` and `_Py_OPARG` macros (GH-101912)Steve Dower2023-02-204-29/+29
* GH-84783: Make the slice object hashable (GH-101264)Furkan Onder2023-02-192-2/+38
* bpo-46978: Correct docstrings for in-place builtin operators (#31802)Nicko van Someren2023-02-181-1/+1
* gh-101758: Clean Up Uses of Import State (gh-101919)Eric Snow2023-02-151-22/+3
* GH-87849: Simplify stack effect of SEND and specialize it for generators and ...Mark Shannon2023-02-131-3/+3
* gh-101747: Fix refleak in new `OrderedDict` repr (GH-101748)Nikita Sobolev2023-02-101-0/+1
* gh-101430: Update tracemalloc to handle presize properly. (gh-101745)Dong-hee Na2023-02-091-7/+2
* GH-101696: invalidate type version tag in `_PyStaticType_Dealloc` (#101697)Kumar Aditya2023-02-081-0/+2
* GH-101578: Normalize the current exception (GH-101607)Mark Shannon2023-02-083-21/+72
* gh-101446: Change `repr` of `collections.OrderedDict` (#101661)Nikita Sobolev2023-02-081-47/+6
* gh-101632: Add the new RETURN_CONST opcode (#101633)penguin_wwy2023-02-071-0/+2
* gh-101072: support default and kw default in PyEval_EvalCodeEx for 3.11+ (#1...Matthieu Dartiailh2023-02-071-2/+2
* gh-101266: Fix __sizeof__ for subclasses of int (#101394)Mark Dickinson2023-02-052-9/+8
* gh-101409: Improve generated clinic code for self type checks (#101411)Erlend E. Aasland2023-01-316-20/+21
* GH-101291: Refactor the `PyLongObject` struct into object header and PyLongVa...Mark Shannon2023-01-303-184/+184
* GH-100762: Don't call `gen.throw()` in `gen.close()`, unless necessary. (GH-1...Mark Shannon2023-01-241-1/+23
* gh-59956: Allow the "Trashcan" Mechanism to Work Without a Thread State (gh-1...Eric Snow2023-01-231-21/+66
* gh-100726: Optimize construction of range object for medium sized integers (#...Pieter Eendebak2023-01-211-0/+58
* gh-101037: Fix potential memory underallocation for zeros of int subtypes (#1...Mark Dickinson2023-01-211-0/+5
* GH-100982: Add `COMPARE_AND_BRANCH` instruction (GH-100983)Mark Shannon2023-01-161-0/+8
* gh-101056: Fix memory leak in `formatfloat()` in `bytesobject.c` (#101057)Nikita Sobolev2023-01-161-1/+3
* gh-86682: Adds sys._getframemodulename as an alternative to using _getframe (...Steve Dower2023-01-131-1/+4
* GH-100942: Fix incorrect cast in property_copy(). (#100965)Raymond Hettinger2023-01-121-1/+3
* GH-81381: Add longer comment _PyType_AllocNoTrack() (GH-100954)Neil Schemenauer2023-01-121-1/+6
* GH-100117: Make `co_lines` more efficient (GH-100447)Brandt Bucher2023-01-101-32/+18
* GH-100126: Skip incomplete frames in more places (GH-100613)Brandt Bucher2023-01-093-10/+11
* gh-100758: Refactor initialisation of frame headers into a single function (_...Irit Katriel2023-01-061-5/+2
* GH-99005: More intrinsics (GH-100774)Mark Shannon2023-01-061-2/+2
* GH-100719: Remove the `co_nplaincellvars` field from code objects. (GH-100721)Mark Shannon2023-01-043-12/+6
* gh-100720: refactor calculation of number of frame slots for a code object in...Irit Katriel2023-01-042-3/+3
* gh-100146: Steal references from stack when building a list (#100147)L. A. F. Pereira2023-01-031-0/+21
* gh-100637: Fix int and bool __sizeof__ calculation to include the 1 element o...Ionite2023-01-021-1/+4
* gh-87980: Fix the error message for disallowed __weakref__ slots (#25362)Géry Ogam2023-01-011-2/+1
* gh-94603: micro optimize list.pop (gh-94604)Pieter Eendebak2022-12-271-12/+20
* gh-100268: Add is_integer method to int (#100439)Shantanu2022-12-242-1/+33
* gh-99947: Ensure unreported errors are chained for SystemError during import ...Sebastian Berg2022-12-231-4/+5
* gh-94155: Reduce hash collisions for code objects (#100183)Dennis Sweeney2022-12-231-20/+33
* gh-92216: improve performance of `hasattr` for type objects (GH-99979)Pieter Eendebak2022-12-232-8/+39
* gh-99110: Initialize `frame->previous` in init_frame to fix segmentation faul...Bill Fisher2022-12-231-0/+1
* gh-99540: Constant hash for _PyNone_Type to aid reproducibility (GH-99541)yonillasky2022-12-161-1/+6