-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
gh-117398: Use the correct module loader for iOS in datetime CAPI test. #120477
Conversation
!buildbot iOS |
🤖 New build scheduled with the buildbot fleet by @freakboy3742 for commit 03293ac 🤖 The command will test the builders whose names match following regular expression: The builders matched are:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Thanks for fixing this. Sorry I didn't catch it yesterday! FWIW, I like your solution taking advantage of the f-string. 😄 |
…PI test. (python#120477) Use the correct loader for iOS.
GH-121561 is a backport of this pull request to the 3.13 branch. |
…PI test. (python#120477) Use the correct loader for iOS.
…PI test. (python#120477) Use the correct loader for iOS.
#119604 added a CAPI test for subinterpreters in the datetime tests; however, the test uses the ExtensionFileLoader to load
_testcapi
. iOS requires the use of the AppleFrameworkLoader.The buildbot validation will fail because of #120476; however, with this PR,
test_datetime
no longer fails.