support InterpreterPoolExecutor #2377
-
Hi, python 3.14 add multiple interpreters feature for true multi-core parallelism, will briefcase support it? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Yes, Briefcase supports the new interpreters module. In general, briefcase apps are "just Python", so if Python supports the feature, so does a Briefcase app. The only notable exception to this is with the handling of multiprocessing - but that's because the nature of how apps are packaged, and the difference between an app and a Python interpreter running a Python script. See beeware/briefcase-macOS-app-template#7 (and similar issues) for a discussion of this problem. |
Beta Was this translation helpful? Give feedback.
Yes, Briefcase supports the new interpreters module. In general, briefcase apps are "just Python", so if Python supports the feature, so does a Briefcase app.
The only notable exception to this is with the handling of multiprocessing - but that's because the nature of how apps are packaged, and the difference between an app and a Python interpreter running a Python script. See beeware/briefcase-macOS-app-template#7 (and similar issues) for a discussion of this problem.