Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 0 additions & 2 deletions Lib/test/test_funcattrs.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,6 @@ def test___name__(self):
self.assertEqual(self.fi.a.__name__, 'a')
self.cannot_set_attr(self.fi.a, "__name__", 'a', AttributeError)

# TODO: RUSTPYTHON
@unittest.expectedFailure
def test___qualname__(self):
# PEP 3155
self.assertEqual(self.b.__qualname__, 'FuncAttrsTest.setUp.<locals>.b')
Expand Down
2 changes: 0 additions & 2 deletions Lib/test/test_reprlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,6 @@ def test_instance(self):
self.assertTrue(s.endswith(">"))
self.assertIn(s.find("..."), [12, 13])

# TODO: RUSTPYTHON
@unittest.expectedFailure
def test_lambda(self):
r = repr(lambda x: x)
self.assertTrue(r.startswith("<function ReprTests.test_lambda.<locals>.<lambda"), r)
Expand Down
2 changes: 0 additions & 2 deletions Lib/test/test_typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -5353,8 +5353,6 @@ class A:
some.__no_type_check__
self.assertEqual(get_type_hints(some), {'args': int, 'return': int})

# TODO: RUSTPYTHON
@unittest.expectedFailure
def test_no_type_check_lambda(self):
@no_type_check
class A:
Expand Down
Loading
Loading