summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* GH-103082: Implementation of PEP 669: Low Impact Monitoring for CPython (GH-1...Mark Shannon2023-04-123-137/+142
* gh-87864: Use correct function definition syntax in the docs (#103312)Nikita Sobolev2023-04-111-4/+4
* gh-77757: replace exception wrapping by PEP-678 notes in typeobject's __set_n...Irit Katriel2023-04-111-2/+4
* gh-102213: Revert "gh-102213: Optimize the performance of `__getattr__` (GH-...Nikita Sobolev2023-04-072-12/+3
* gh-101865: Deprecate `co_lnotab` from code objects as per PEP 626 (#101866)Nikita Sobolev2023-04-031-0/+5
* GH-89987: Shrink the BINARY_SUBSCR caches (GH-103022)Brandt Bucher2023-03-291-0/+10
* gh-100227: Move the Dict of Interned Strings to PyInterpreterState (gh-102339)Eric Snow2023-03-281-42/+56
* gh-100227: Revert gh-102925 "gh-100227: Make the Global Interned Dict Safe fo...Eric Snow2023-03-271-4/+9
* gh-102941: Fix "‘subobj’ may be used uninitialized in this function" warn...Nikita Sobolev2023-03-271-1/+1
* GH-100982: Break up COMPARE_AND_BRANCH (GH-102801)Brandt Bucher2023-03-231-8/+0
* gh-100227: Make the Global Interned Dict Safe for Isolated Interpreters (gh-1...Eric Snow2023-03-231-9/+4
* gh-102859: Remove JUMP_IF_FALSE_OR_POP and JUMP_IF_TRUE_OR_POP (#102870)Irit Katriel2023-03-221-12/+2
* GH-101291: Rearrange the size bits in PyLongObject (GH-102464)Mark Shannon2023-03-227-392/+345
* gh-102406: replace exception chaining by PEP-678 notes in codecs (#102407)Irit Katriel2023-03-211-110/+0
* gh-102304: Move the Total Refcount to PyInterpreterState (gh-102545)Eric Snow2023-03-216-31/+82
* gh-102304: Move _Py_RefTotal to _PyRuntimeState (gh-102543)Eric Snow2023-03-201-25/+76
* gh-102701: Fix overflow in dictobject.c (GH-102750)Inada Naoki2023-03-171-1/+1
* gh-102594: PyErr_SetObject adds note to exception raised on normalization err...Irit Katriel2023-03-161-0/+15
* GH-100227: cleanup initialization of global interned dict (#102682)Kumar Aditya2023-03-141-8/+10
* gh-79940: add introspection API for asynchronous generators to `inspect` modu...Thomas Krennwallner2023-03-111-0/+10
* gh-102213: Optimize the performance of `__getattr__` (GH-102248)wangxiang-hz2023-03-112-3/+12
* gh-102255: Improve build support for Windows API partitions (GH-102256)Max Bachmann2023-03-091-1/+0
* gh-100227: Move dict_state.global_version to PyInterpreterState (gh-102338)Eric Snow2023-03-091-90/+146
* gh-100227: Move next_keys_version to PyInterpreterState (gh-102335)Eric Snow2023-03-091-3/+4
* gh-100227: Move func_state.next_version to PyInterpreterState (gh-102334)Eric Snow2023-03-081-2/+3
* gh-102304: Consolidate Direct Usage of _Py_RefTotal (gh-102514)Eric Snow2023-03-086-32/+84
* gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (in...Irit Katriel2023-03-088-106/+51
* fix typo in async generator code field name `ag_code` (#102448)Kumar Aditya2023-03-081-1/+1
* gh-102381: don't call watcher callback with dead object (#102382)Carl Meyer2023-03-083-5/+105
* gh-90110: Fix the c-analyzer Tool (#102483)Eric Snow2023-03-071-9/+4
* 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