| Commit message (Expand) | Author | Age | Files | Lines |
* | GH-100227: cleanup initialization of global interned dict (#102682) | Kumar Aditya | 2023-03-14 | 1 | -8/+10 |
|
|
* | gh-79940: add introspection API for asynchronous generators to `inspect` modu... | Thomas Krennwallner | 2023-03-11 | 1 | -0/+10 |
|
|
* | gh-102213: Optimize the performance of `__getattr__` (GH-102248) | wangxiang-hz | 2023-03-11 | 2 | -3/+12 |
|
|
* | gh-102255: Improve build support for Windows API partitions (GH-102256) | Max Bachmann | 2023-03-09 | 1 | -1/+0 |
|
|
* | gh-100227: Move dict_state.global_version to PyInterpreterState (gh-102338) | Eric Snow | 2023-03-09 | 1 | -90/+146 |
|
|
* | gh-100227: Move next_keys_version to PyInterpreterState (gh-102335) | Eric Snow | 2023-03-09 | 1 | -3/+4 |
|
|
* | gh-100227: Move func_state.next_version to PyInterpreterState (gh-102334) | Eric Snow | 2023-03-08 | 1 | -2/+3 |
|
|
* | gh-102304: Consolidate Direct Usage of _Py_RefTotal (gh-102514) | Eric Snow | 2023-03-08 | 6 | -32/+84 |
|
|
* | gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (in... | Irit Katriel | 2023-03-08 | 8 | -106/+51 |
|
|
* | fix typo in async generator code field name `ag_code` (#102448) | Kumar Aditya | 2023-03-08 | 1 | -1/+1 |
|
|
* | gh-102381: don't call watcher callback with dead object (#102382) | Carl Meyer | 2023-03-08 | 3 | -5/+105 |
|
|
* | gh-90110: Fix the c-analyzer Tool (#102483) | Eric Snow | 2023-03-07 | 1 | -9/+4 |
|
|
* | gh-101892: Fix `SystemError` when a callable iterator call exhausts the itera... | Raj | 2023-03-04 | 1 | -2/+2 |
|
|
* | gh-102371: move _Py_Mangle from compile.c to symtable.c (#102372) | Irit Katriel | 2023-03-02 | 1 | -1/+1 |
|
|
* | Fix typos in documentation and comments (GH-102374) | Michael K | 2023-03-02 | 1 | -2/+2 |
|
|
* | gh-101101: Unstable C API tier (PEP 689) (GH-101102) | Petr Viktorin | 2023-02-28 | 1 | -4/+5 |
|
|
* | gh-101825: Clarify that as_integer_ratio() output is always normalized (#101843) | Sergey B Kirpichev | 2023-02-27 | 4 | -20/+14 |
|
|
* | gh-101765: unicodeobject: use Py_XDECREF correctly (#102283) | Jelle Zijlstra | 2023-02-26 | 1 | -1/+1 |
|
|
* | gh-101765: Fix refcount issues in list and unicode pickling (#102265) | Jelle Zijlstra | 2023-02-26 | 2 | -1/+11 |
|
|
* | gh-101765: Fix SystemError / segmentation fault in iter `__reduce__` when int... | Ionite | 2023-02-24 | 7 | -23/+66 |
|
|
* | GH-100719: Remove redundant `gi_code` field from generator object. (GH-100749) | Mark Shannon | 2023-02-23 | 1 | -17/+55 |
|
|
* | Revert "bpo-46978: Correct docstrings for in-place builtin operators #31802) ... | Irit Katriel | 2023-02-23 | 1 | -1/+1 |
|
|
* | gh-101907: Stop using `_Py_OPCODE` and `_Py_OPARG` macros (GH-101912) | Steve Dower | 2023-02-20 | 4 | -29/+29 |
|
|
* | GH-84783: Make the slice object hashable (GH-101264) | Furkan Onder | 2023-02-19 | 2 | -2/+38 |
|
|
* | bpo-46978: Correct docstrings for in-place builtin operators (#31802) | Nicko van Someren | 2023-02-18 | 1 | -1/+1 |
|
|
* | gh-101758: Clean Up Uses of Import State (gh-101919) | Eric Snow | 2023-02-15 | 1 | -22/+3 |
|
|
* | GH-87849: Simplify stack effect of SEND and specialize it for generators and ... | Mark Shannon | 2023-02-13 | 1 | -3/+3 |
|
|
* | gh-101747: Fix refleak in new `OrderedDict` repr (GH-101748) | Nikita Sobolev | 2023-02-10 | 1 | -0/+1 |
|
|
* | gh-101430: Update tracemalloc to handle presize properly. (gh-101745) | Dong-hee Na | 2023-02-09 | 1 | -7/+2 |
|
|
* | GH-101696: invalidate type version tag in `_PyStaticType_Dealloc` (#101697) | Kumar Aditya | 2023-02-08 | 1 | -0/+2 |
|
|
* | GH-101578: Normalize the current exception (GH-101607) | Mark Shannon | 2023-02-08 | 3 | -21/+72 |
|
|
* | gh-101446: Change `repr` of `collections.OrderedDict` (#101661) | Nikita Sobolev | 2023-02-08 | 1 | -47/+6 |
|
|
* | gh-101632: Add the new RETURN_CONST opcode (#101633) | penguin_wwy | 2023-02-07 | 1 | -0/+2 |
|
|
* | gh-101072: support default and kw default in PyEval_EvalCodeEx for 3.11+ (#1... | Matthieu Dartiailh | 2023-02-07 | 1 | -2/+2 |
|
|
* | gh-101266: Fix __sizeof__ for subclasses of int (#101394) | Mark Dickinson | 2023-02-05 | 2 | -9/+8 |
|
|
* | gh-101409: Improve generated clinic code for self type checks (#101411) | Erlend E. Aasland | 2023-01-31 | 6 | -20/+21 |
|
|
* | GH-101291: Refactor the `PyLongObject` struct into object header and PyLongVa... | Mark Shannon | 2023-01-30 | 3 | -184/+184 |
|
|
* | GH-100762: Don't call `gen.throw()` in `gen.close()`, unless necessary. (GH-1... | Mark Shannon | 2023-01-24 | 1 | -1/+23 |
|
|
* | gh-59956: Allow the "Trashcan" Mechanism to Work Without a Thread State (gh-1... | Eric Snow | 2023-01-23 | 1 | -21/+66 |
|
|
* | gh-100726: Optimize construction of range object for medium sized integers (#... | Pieter Eendebak | 2023-01-21 | 1 | -0/+58 |
|
|
* | gh-101037: Fix potential memory underallocation for zeros of int subtypes (#1... | Mark Dickinson | 2023-01-21 | 1 | -0/+5 |
|
|
* | GH-100982: Add `COMPARE_AND_BRANCH` instruction (GH-100983) | Mark Shannon | 2023-01-16 | 1 | -0/+8 |
|
|
* | gh-101056: Fix memory leak in `formatfloat()` in `bytesobject.c` (#101057) | Nikita Sobolev | 2023-01-16 | 1 | -1/+3 |
|
|
* | gh-86682: Adds sys._getframemodulename as an alternative to using _getframe (... | Steve Dower | 2023-01-13 | 1 | -1/+4 |
|
|
* | GH-100942: Fix incorrect cast in property_copy(). (#100965) | Raymond Hettinger | 2023-01-12 | 1 | -1/+3 |
|
|
* | GH-81381: Add longer comment _PyType_AllocNoTrack() (GH-100954) | Neil Schemenauer | 2023-01-12 | 1 | -1/+6 |
|
|
* | GH-100117: Make `co_lines` more efficient (GH-100447) | Brandt Bucher | 2023-01-10 | 1 | -32/+18 |
|
|
* | GH-100126: Skip incomplete frames in more places (GH-100613) | Brandt Bucher | 2023-01-09 | 3 | -10/+11 |
|
|
* | gh-100758: Refactor initialisation of frame headers into a single function (_... | Irit Katriel | 2023-01-06 | 1 | -5/+2 |
|
|
* | GH-99005: More intrinsics (GH-100774) | Mark Shannon | 2023-01-06 | 1 | -2/+2 |
|
|