-
-
Notifications
You must be signed in to change notification settings - Fork 31.9k
[3.12] gh-76785: Make test.test_interpreters executable (GH-112982) #113470
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[3.12] gh-76785: Make test.test_interpreters executable (GH-112982) #113470
Conversation
…GH-112982) This is so that we can run python -m test.test_interpreters. As such it backports that aspect of commit 86a77f4, where it is implemented by a package __main__.py.
This is as suggested in #113381 (comment). The only non-trivial aspect of this was the title. I've chosen to cite the same mega-issue as in #112982 but reproducing the title seemed misleading given only really the intent is cherry-picked. This needs back-porting to 3.11. I'd be content to repeat the process if Miss Islington can't. |
Thanks @jeff5 for the PR, and @serhiy-storchaka for merging it 🌮🎉.. I'm working now to backport this PR to: 3.11. |
…GH-112982) (pythonGH-113470) This is so that we can run python -m test.test_interpreters. As such it backports that aspect of commit 86a77f4, where it is implemented by a package __main__.py. (cherry picked from commit bdad5c3) Co-authored-by: Jeff Allen <[email protected]>
GH-113473 is a backport of this pull request to the 3.11 branch. |
Thank you @jeff5. |
GH-113473 is a backport of this pull request to the 3.11 branch. |
…H-113470) (GH-113473) This is so that we can run python -m test.test_interpreters. As such it backports that aspect of commit 86a77f4, where it is implemented by a package __main__.py. (cherry picked from commit bdad5c3) Co-authored-by: Jeff Allen <[email protected]>
Wow, Christmas Day too! Thank you, and Happy Christmas @serhiy-storchaka . |
This is so that we can run
python -m test.test_interpreters
. As such it backports that aspect of commit 86a77f4, where it is implemented by a package__main__.py
.