10000 Add some tests based on coverage report: Part 2 by ilevkivskyi · Pull Request #375 · python/typing · GitHub
[go: up one dir, main page]

Skip to content

Add some tests based on coverage report: Part 2 #375

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 6 commits into from
Feb 10, 2017
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
Fix lint on PY2
  • Loading branch information
ilevkivskyi committed Feb 3, 2017
commit ddf5078f37fe73313b2b4da8ec17a3fa5355ebf6
1 change: 0 additions & 1 deletion python2/test_typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,6 @@ def test_repr(self):
u = Union[List[int], int]
self.assertEqual(repr(u), 'typing.Union[typing.List[int], int]')


def test_cannot_subclass(self):
with self.assertRaises(TypeError):
class C(Union):
Expand Down
0