Skip to content
Merged
Show file tree
Hide file tree
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
Made changes to minimize diff in PR
  • Loading branch information
terryluan12 authored and youknowone committed Jan 15, 2026
commit 6a3932d081e1922f33bd980f881a3158aea95f44
3 changes: 2 additions & 1 deletion Lib/test/test_ftplib.py
Original file line number Diff line number Diff line change
Expand Up @@ -919,9 +919,10 @@ def setUp(self, encoding=DEFAULT_ENCODING):
self.client.auth()
self.client.prot_p()


@skipUnless(ssl, "SSL not available")
@requires_subprocess()
@unittest.skip("TODO: RUSTPYTHON; SSL + asyncore has problem")
@requires_subprocess()
class TestTLS_FTPClass(TestCase):
"""Specific TLS_FTP class tests."""

Expand Down
2 changes: 1 addition & 1 deletion Lib/test/test_json/test_decode.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def test_float(self):
self.assertEqual(rval, 1.0)

# TODO: RUSTPYTHON
@unittest.skip('TODO: RUSTPYTHON; called `Result::unwrap()` on an `Err` value: ParseFloatError { kind: Invalid }')
@unittest.skip("TODO: RUSTPYTHON; called `Result::unwrap()` on an `Err` value: ParseFloatError { kind: Invalid }")
def test_nonascii_digits_rejected(self):
# JSON specifies only ascii digits, see gh-125687
for num in ["1\uff10", "0.\uff10", "0e\uff10"]:
Expand Down
Loading