We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6b17d1 commit 5ab1e86Copy full SHA for 5ab1e86
1 file changed
Lib/test/test_ftplib.py
@@ -8,6 +8,7 @@
8
import io
9
import errno
10
import os
11
+import sys
12
import threading
13
import time
14
import unittest
@@ -590,6 +591,8 @@ def test_quit(self):
590
591
# Ensure the connection gets closed; sock attribute should be None
592
self.assertEqual(self.client.sock, None)
593
594
+ @unittest.skipIf(sys.platform == 'cygwin',
595
+ "MSG_OOB doesn't work properly on Cygwin")
596
def test_abort(self):
597
self.client.abort()
598
0 commit comments