Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | GH-115802: JIT "small" code for Windows (GH-115964) | Brandt Bucher | 2024-02-29 | 1 | -1/+1 |
| | |||||
* | gh-111968: Refactor _PyXXX_Fini to integrate with _PyObject_ClearFreeLists ↵ | Donghee Na | 2024-02-10 | 1 | -2/+0 |
| | | | | (gh-114899) | ||||
* | gh-111968: Use per-thread slice_cache in free-threading (gh-113972) | Donghee Na | 2024-01-15 | 1 | -1/+1 |
| | |||||
* | GH-94163: Add BINARY_SLICE and STORE_SLICE instructions. (GH-94168) | Mark Shannon | 2022-06-27 | 1 | -0/+2 |
| | |||||
* | bpo-46008: Make runtime-global object/type lifecycle functions and state ↵ | Eric Snow | 2021-12-09 | 1 | -0/+20 |
consistent. (gh-29998) This change is strictly renames and moving code around. It helps in the following ways: * ensures type-related init functions focus strictly on one of the three aspects (state, objects, types) * passes in PyInterpreterState * to all those functions, simplifying work on moving types/objects/state to the interpreter * consistent naming conventions help make what's going on more clear * keeping API related to a type in the corresponding header file makes it more obvious where to look for it https://bugs.python.org/issue46008 |