Skip to content

Commit 8a5c49f

Browse files
terryluan12youknowone
authored andcommitted
Made changes to minimize diff in PR
1 parent 29ed96e commit 8a5c49f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Lib/test/test_ftplib.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -919,9 +919,10 @@ def setUp(self, encoding=DEFAULT_ENCODING):
919919
self.client.auth()
920920
self.client.prot_p()
921921

922+
922923
@skipUnless(ssl, "SSL not available")
923-
@requires_subprocess()
924924
@unittest.skip("TODO: RUSTPYTHON; SSL + asyncore has problem")
925+
@requires_subprocess()
925926
class TestTLS_FTPClass(TestCase):
926927
"""Specific TLS_FTP class tests."""
927928

Lib/test/test_json/test_decode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def test_float(self):
1919
self.assertEqual(rval, 1.0)
2020

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

0 commit comments

Comments
 (0)