-
-
Notifications
You must be signed in to change notification settings - Fork 31.9k
gh-119180: annotationlib: Fix __all__, other minor fixes #122365
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
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ | |
from annotationlib import Format, get_annotations, get_annotate_function | ||
from typing import Unpack | ||
|
||
from test import support | ||
from test.test_inspect import inspect_stock_annotations | ||
from test.test_inspect import inspect_stringized_annotations | ||
from test.test_inspect import inspect_stringized_annotations_2 | ||
|
@@ -287,7 +288,9 @@ class C1(metaclass=NoDict): | |
) | ||
self.assertEqual(annotationlib.get_annotations(NoDict), {"b": str}) | ||
self.assertEqual( | ||
annotationlib.get_annotations(NoDict, format=annotationlib.Format.FORWARDREF), | ||
annotationlib.get_annotations( | ||
NoDict, format=annotationlib.Format.FORWARDREF | ||
), | ||
{"b": str}, | ||
) | ||
self.assertEqual( | ||
|
@@ -675,12 +678,13 @@ def test_pep695_generic_class_with_future_annotations_and_local_shadowing(self): | |
) | ||
self.assertEqual(B_annotations, {"x": int, "y": str, "z": bytes}) | ||
|
||
def test_pep695_generic_class_with_future_annotations_name_clash_with_global_vars(self): | ||
def test_pep695_generic_class_with_future_annotations_name_clash_with_global_vars( | ||
self, | ||
): | ||
ann_module695 = inspect_stringized_annotations_pep695 | ||
C_annotations = annotationlib.get_annotations(ann_module695.C, eval_str=True) | ||
self.assertEqual( | ||
set(C_annotations.values()), | ||
set(ann_module695.C.__type_params__) | ||
set(C_annotations.values()), set(ann_module695.C.__type_params__) | ||
) | ||
|
||
def test_pep_695_generic_function_with_future_annotations(self): | ||
|
@@ -697,17 +701,19 @@ def test_pep_695_generic_function_with_future_annotations(self): | |
self.assertIs(generic_func_annotations["z"].__origin__, func_t_params[2]) | ||
self.assertIs(generic_func_annotations["zz"].__origin__, func_t_params[2]) | ||
|
||
def test_pep_695_generic_function_with_future_annotations_name_clash_with_global_vars(self): | ||
def test_pep_695_generic_function_with_future_annotations_name_clash_with_global_vars( | ||
self, | ||
): | ||
self.assertEqual( | ||
set( | ||
annotationlib.get_annotations( | ||
inspect_stringized_annotations_pep695.generic_function_2, | ||
eval_str=True | ||
eval_str=True, | ||
).values() | ||
), | ||
set( | ||
inspect_stringized_annotations_pep695.generic_function_2.__type_params__ | ||
) | ||
), | ||
) | ||
|
||
def test_pep_695_generic_method_with_future_annotations(self): | ||
|
@@ -721,23 +727,27 @@ def test_pep_695_generic_method_with_future_annotations(self): | |
} | ||
self.assertEqual( | ||
generic_method_annotations, | ||
{"x": params["Foo"], "y": params["Bar"], "return": None} | ||
{"x": params["Foo"], "y": params["Bar"], "return": None}, | ||
) | ||
|
||
def test_pep_695_generic_method_with_future_annotations_name_clash_with_global_vars(self): | ||
def test_pep_695_generic_method_with_future_annotations_name_clash_with_global_vars( | ||
self, | ||
): | ||
self.assertEqual( | ||
set( | ||
annotationlib.get_annotations( | ||
inspect_stringized_annotations_pep695.D.generic_method_2, | ||
eval_str=True | ||
eval_str=True, | ||
).values() | ||
), | ||
set( | ||
inspect_stringized_annotations_pep695.D.generic_method_2.__type_params__ | ||
) | ||
), | ||
) | ||
|
||
def test_pep_695_generic_method_with_future_annotations_name_clash_with_global_and_local_vars(self): | ||
def test_pep_695_generic_method_with_future_annotations_name_clash_with_global_and_local_vars( | ||
self, | ||
): | ||
self.assertEqual( | ||
annotationlib.get_annotations( | ||
inspect_stringized_annotations_pep695.E, eval_str=True | ||
|
@@ -749,20 +759,20 @@ def test_pep_695_generics_with_future_annotations_nested_in_function(self): | |
results = inspect_stringized_annotations_pep695.nested() | ||
|
||
self.assertEqual( | ||
set(results.F_annotations.values()), | ||
set(results.F.__type_params__) | ||
set(results.F_annotations.values()), set(results.F.__type_params__) | ||
) | ||
self.assertEqual( | ||
set(results.F_meth_annotations.values()), | ||
set(results.F.generic_method.__type_params__) | ||
set(results.F.generic_method.__type_params__), | ||
) | ||
self.assertNotEqual( | ||
set(results.F_meth_annotations.values()), | ||
set(results.F.__type_params__) | ||
set(results.F_meth_annotations.values()), set(results.F.__type_params__) | ||
) | ||
self.assertEqual( | ||
set(results.F_meth_annotations.values()).intersection(results.F.__type_params__), | ||
set() | ||
set(results.F_meth_annotations.values()).intersection( | ||
results.F.__type_params__ | ||
), | ||
set(), | ||
) | ||
|
||
self.assertEqual(results.G_annotations, {"x": str}) | ||
|
@@ -783,7 +793,9 @@ def evaluate(format, exc=NotImplementedError): | |
with self.assertRaises(NameError): | ||
annotationlib.call_evaluate_function(evaluate, annotationlib.Format.VALUE) | ||
self.assertEqual( | ||
annotationlib.call_evaluate_function(evaluate, annotationlib.Format.FORWARDREF), | ||
annotationlib.call_evaluate_function( | ||
evaluate, annotationlib.Format.FORWARDREF | ||
), | ||
annotationlib.ForwardRef("undefined"), | ||
) | ||
self.assertEqual( | ||
|
@@ -813,12 +825,14 @@ class Y(metaclass=Meta): | |
self.assertEqual(get_annotate_function(Y)(Format.VALUE), {"b": float}) | ||
|
||
def test_unannotated_meta(self): | ||
class Meta(type): pass | ||
class Meta(type): | ||
pass | ||
|
||
class X(metaclass=Meta): | ||
a: str | ||
|
||
class Y(X): pass | ||
class Y(X): | ||
pass | ||
|
||
self.assertEqual(get_annotations(Meta), {}) | ||
self.assertIs(get_annotate_function(Meta), None) | ||
|
@@ -867,6 +881,13 @@ class D(metaclass=Meta): | |
self.assertEqual(get_annotations(c), c.expected_annotations) | ||
annotate_func = get_annotate_function(c) | ||
if c.expected_annotations: | ||
self.assertEqual(annotate_func(Format.VALUE), c.expected_annotations) | ||
self.assertEqual( | ||
annotate_func(Format.VALUE), c.expected_annotations | ||
) | ||
else: | ||
self.assertIs(annotate_func, None) | ||
|
||
|
||
class TestAnnotationLib(unittest.TestCase): | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is the only non-formatting change in this file. |
||
def test__all__(self): | ||
support.check__all__(self, annotationlib) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 two were missing. The rest of the changes in this file are just formatting.