Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

updated _collections_abc.py and test_collections.py to CPython 3.11.2 #5016

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 2 commits into from
Jun 18, 2023
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
decorated failing tests in test_typing.py
  • Loading branch information
bobby-palmer committed Jun 18, 2023
commit c5b4789383121200fb8d7ede49166f89bf8a0e45
6 changes: 6 additions & 0 deletions 6 Lib/test/test_typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -690,6 +690,10 @@ def test_consistency(self):

class CollectionsCallableTests(BaseCallableTests, BaseTestCase):
Callable = collections.abc.Callable
# TODO: RUSTPYTHON
@unittest.expectedFailure
def test_errors(self): # TODO: RUSTPYTHON, remove when this passes
super().test_errors() # TODO: RUSTPYTHON, remove when this passes

# TODO: RUSTPYTHON, AssertionError: 'collections.abc.Callable[__main__.ParamSpec, typing.TypeVar]' != 'collections.abc.Callable[~P, ~T]'
@unittest.expectedFailure
Expand Down Expand Up @@ -4916,6 +4920,8 @@ def test_basic_plain(self):
self.assertEqual(P, P)
self.assertIsInstance(P, ParamSpec)

# TODO: RUSTPYTHON
@unittest.expectedFailure
def test_valid_uses(self):
P = ParamSpec('P')
T = TypeVar('T')
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.