8000 bpo-43224: Implement PEP 646 changes to genericaliasobject.c by mrahtz · Pull Request #31019 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-43224: Implement PEP 646 changes to genericaliasobject.c #31019

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 19 commits into from
Mar 12, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove test which is no longer necessary
  • Loading branch information
mrahtz committed Jan 30, 2022
commit c256bc99d9232d83f7aabc1dab4e70320a89e227
7 changes: 0 additions & 7 deletions Lib/test/test_genericalias.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,13 +232,6 @@ def test_parameters(self):
self.assertEqual(L5.__args__, (Callable[[K, V], K],))
self.assertEqual(L5.__parameters__, (K, V))

with self.assertRaises(TypeError):
tuple[
tuple( # Effectively the same as starring; TODO
list[int]
)
]

T1 = tuple[
tuple( # Ditto TODO
tuple[int]
Expand Down
0