summaryrefslogtreecommitdiffstats
path: root/Modules/_interpreters_common.h
Commit message (Collapse)AuthorAgeFilesLines
* [3.13] gh-76785: Expand How Interpreter Channels Handle Interpreter ↵Miss Islington (bot)2024-07-151-0/+45
| | | | | | | | | Finalization (gh-121811) See 6b98b274b6 for an explanation of the problem and solution. Here I've applied the solution to channels. (cherry picked from commit 8b209fd4f8a9bf9603888bda2c44b5cfd4ebf47a, AKA gh-121805) Co-authored-by: Eric Snow <ericsnowcurrently@gmail.com>
* gh-76785: Add More Tests to test_interpreters.test_api (gh-117662)Eric Snow2024-04-111-17/+0
| | | In addition to the increase test coverage, this is a precursor to sorting out how we handle interpreters created directly via the C-API.
* gh-76785: Drop PyInterpreterID_Type (gh-117101)Eric Snow2024-03-211-0/+17
| | | I added it quite a while ago as a strategy for managing interpreter lifetimes relative to the PEP 554 (now 734) implementation. Relatively recently I refactored that implementation to no longer rely on InterpreterID objects. Thus now I'm removing it.
* gh-76785: Minor Improvements to "interpreters" Module (gh-116328)Eric Snow2024-03-051-0/+8
| | | This includes adding pickle support to various classes, and small changes to improve the maintainability of the low-level _xxinterpqueues module.
* gh-76785: Improved Subinterpreters Compatibility with 3.12 (gh-115424)Eric Snow2024-02-131-0/+13
For the most part, these changes make is substantially easier to backport subinterpreter-related code to 3.12, especially the related modules (e.g. _xxsubinterpreters). The main motivation is to support releasing a PyPI package with the 3.13 capabilities compiled for 3.12. A lot of the changes here involve either hiding details behind macros/functions or splitting up some files.