Skip to content

Commit

Permalink
Fix unused classes in a typing test (pythonGH-102437)
Browse files Browse the repository at this point in the history
As part of investigation issue python#102433, I discovered what I believe to be an error where two classes `CI` and `DI` are not being used. The assertions beneath them act on `C` and `D`, duplicating existing assertions in this test.

Automerge-Triggered-By: GH:AlexWaygood
  • Loading branch information
JosephSBoyle authored and hugovk committed Mar 6, 2023

Unverified

This user has not yet uploaded their public signing key.
1 parent 0e240a6 commit 5075047
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Lib/test/test_typing.py
Original file line number Diff line number Diff line change
@@ -2921,8 +2921,8 @@ class DI:
def __init__(self):
self.x = None

self.assertIsInstance(C(), P)
self.assertIsInstance(D(), P)
self.assertIsInstance(CI(), P)
self.assertIsInstance(DI(), P)

def test_protocols_in_unions(self):
class P(Protocol):

0 comments on commit 5075047

Please sign in to comment.