◐ Shell
reader mode source ↗
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
File filter
Conversations
Jump to
Diff view
Apply and reload
Show whitespace
Diff view
Apply and reload
1 change: 0 additions & 1 deletion Lib/test/test_descr.py
Original file line number Diff line number Diff line change
Expand Up @@ -4961,7 +4961,6 @@ class OverrideBoth(OverrideNew, OverrideInit):
self.assertRaises(TypeError, case, 1, 2, 3)
self.assertRaises(TypeError, case, 1, 2, foo=3)

@unittest.expectedFailure # TODO: RUSTPYTHON
def test_subclassing_does_not_duplicate_dict_descriptors(self):
class Base:
pass
Expand Down
6 changes: 0 additions & 6 deletions Lib/test/test_signal.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@

class GenericTests(unittest.TestCase):

# TODO: RUSTPYTHON
@unittest.expectedFailure
def test_enums(self):
for name in dir(signal):
sig = getattr(signal, name)
Expand Up @@ -763,17 +761,13 @@ def handler(signum, frame):
% (exitcode, stdout))
return (exitcode == 3)

# TODO: RUSTPYTHON
@unittest.expectedFailure
def test_without_siginterrupt(self):
# If a signal handler is installed and siginterrupt is not called
# at all, when that signal arrives, it interrupts a syscall that's in
# progress.
interrupted = self.readpipe_interrupted(None)
self.assertTrue(interrupted)

# TODO: RUSTPYTHON
@unittest.expectedFailure
def test_siginterrupt_on(self):
# If a signal handler is installed and siginterrupt is called with
# a true value for the second argument, when that signal arrives, it
Expand Down
6 changes: 0 additions & 6 deletions Lib/test/test_ssl.py
Original file line number Diff line number Diff line change
Expand Up @@ -5477,7 +5477,6 @@ class Checked_TLSMessageType(enum.IntEnum):
CHANGE_CIPHER_SPEC = 0x0101
enum._test_simple_enum(Checked_TLSMessageType, _TLSMessageType)

@unittest.expectedFailure # TODO: RUSTPYTHON
def test_sslmethod(self):
Checked_SSLMethod = enum._old_convert_(
enum.IntEnum, '_SSLMethod', 'ssl',
Expand All @@ -5488,7 +5487,6 @@ def test_sslmethod(self):
Checked_SSLMethod.PROTOCOL_SSLv23 = Checked_SSLMethod.PROTOCOL_TLS
enum._test_simple_enum(Checked_SSLMethod, ssl._SSLMethod)

@unittest.expectedFailure # TODO: RUSTPYTHON
def test_options(self):
CheckedOptions = enum._old_convert_(
enum.IntFlag, 'Options', 'ssl',
@@ -5497,7 +5495,6 @@ def test_options(self):
)
enum._test_simple_enum(CheckedOptions, ssl.Options)

@unittest.expectedFailure # TODO: RUSTPYTHON
def test_alertdescription(self):
CheckedAlertDescription = enum._old_convert_(
enum.IntEnum, 'AlertDescription', 'ssl',
Expand All @@ -5506,7 +5503,6 @@ def test_alertdescription(self):
)
enum._test_simple_enum(CheckedAlertDescription, ssl.AlertDescription)

@unittest.expectedFailure # TODO: RUSTPYTHON
def test_sslerrornumber(self):
Checked_SSLErrorNumber = enum._old_convert_(
enum.IntEnum, 'SSLErrorNumber', 'ssl',
Expand All @@ -5515,7 +5511,6 @@ def test_sslerrornumber(self):
)
enum._test_simple_enum(Checked_SSLErrorNumber, ssl.SSLErrorNumber)

@unittest.expectedFailure # TODO: RUSTPYTHON
def test_verifyflags(self):
CheckedVerifyFlags = enum._old_convert_(
enum.IntFlag, 'VerifyFlags', 'ssl',
Expand All @@ -5524,7 +5519,6 @@ def test_verifyflags(self):
)
enum._test_simple_enum(CheckedVerifyFlags, ssl.VerifyFlags)

@unittest.expectedFailure # TODO: RUSTPYTHON
def test_verifymode(self):
CheckedVerifyMode = enum._old_convert_(
enum.IntEnum, 'VerifyMode', 'ssl',
Expand Down
Loading
Toggle all file notes Toggle all file annotations