Skip to content

Commit b6f4667

Browse files
committed
temp?
1 parent 5af0092 commit b6f4667

File tree

4 files changed

+0
-8
lines changed

4 files changed

+0
-8
lines changed

Lib/test/test_array.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1285,8 +1285,6 @@ def check_overflow(self, lower, upper):
12851285
self.assertRaises(OverflowError, array.array, self.typecode, [upper+1])
12861286
self.assertRaises(OverflowError, a.__setitem__, 0, upper+1)
12871287

1288-
# TODO: RUSTPYTHON
1289-
@unittest.expectedFailure
12901288
def test_subclassing(self):
12911289
typecode = self.typecode
12921290
class ExaggeratingArray(array.array):

Lib/test/test_importlib/test_metadata_api.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,6 @@ def test_entry_points_missing_name(self):
139139
def test_entry_points_missing_group(self):
140140
assert entry_points(group='missing') == ()
141141

142-
# TODO: RUSTPYTHON
143-
@unittest.expectedFailure
144142
def test_entry_points_allows_no_attributes(self):
145143
ep = entry_points().select(group='entries', name='main')
146144
with self.assertRaises(AttributeError):

Lib/test/test_property.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,8 +242,6 @@ class PropertySubSlots(property):
242242

243243
class PropertySubclassTests(unittest.TestCase):
244244

245-
# TODO: RUSTPYTHON
246-
@unittest.expectedFailure
247245
def test_slots_docstring_copy_exception(self):
248246
try:
249247
class Foo(object):

Lib/test/test_weakref.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1068,8 +1068,6 @@ class MyRef(weakref.ref):
10681068
self.assertIn(r1, refs)
10691069
self.assertIn(r2, refs)
10701070

1071-
# TODO: RUSTPYTHON
1072-
@unittest.expectedFailure
10731071
def test_subclass_refs_with_slots(self):
10741072
class MyRef(weakref.ref):
10751073
__slots__ = "slot1", "slot2"

0 commit comments

Comments
 (0)