- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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
change format_args to prefer annotations from typing.get_type_hints #5280
change format_args to prefer annotations from typing.get_type_hints #5280
Conversation
Codecov Report
@@ Coverage Diff @@
## master #5280 +/- ##
==========================================
- Coverage 82.24% 81.44% -0.81%
==========================================
Files 302 292 -10
Lines 39585 38865 -720
Branches 6094 5794 -300
==========================================
- Hits 32557 31653 -904
- Misses 5691 5843 +152
- Partials 1337 1369 +32
Continue to review full report at Codecov.
|
6091950
to
8470cf9
Compare
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.
I'd like to merge this into 1.7 branch. Could you rebase this please?
The current code looks for the pattern:: class Node: def parent(self) -> 'Node': pass This change allows more complex forward references:: class Node: def children(self) -> Set['Node']: pass
8470cf9
to
da45604
Compare
@tk0miya done! |
Thank you for quick work! |
Subject: change format_args to prefer annotations from typing.get_type_hints
Feature or Bugfix
Purpose
The current code looks for the pattern:
This change allows more complex forward references: