Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32.1k
gh-104879: Fix TypeAliasType.__module__ in exec()#104881
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
@@ -373,6 +373,20 @@ def test_basic_plain(self): | |||
self.assertIs(T.__covariant__, False) | |||
self.assertIs(T.__contravariant__, False) | |||
self.assertIs(T.__infer_variance__, False) | |||
self.assertEqual(T.__module__, __name__) | |||
def test_basic_with_exec(self): |
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.
These tests already passed, but adding them here for completeness
bedevere-bot commentedMay 24, 2023
🤖 New build scheduled with the buildbot fleet by@JelleZijlstra for commita6e5d5e 🤖 If you want to schedule another build, you need to add the🔨 test-with-refleak-buildbots label again. |
Thanks@JelleZijlstra for the PR 🌮🎉.. I'm working now to backport this PR to: 3.12. |
)(cherry picked from commitfe77a99)Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
bedevere-bot commentedMay 24, 2023
GH-104890 is a backport of this pull request to the3.12 branch. |
Uh oh!
There was an error while loading.Please reload this page.