Skip to content
Merged
Changes from all commits
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
3 changes: 3 additions & 0 deletions Lib/test/test_ftplib.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import io
import errno
import os
import sys
import threading
import time
import unittest
Expand Down Expand Up @@ -590,6 +591,8 @@ def test_quit(self):
# Ensure the connection gets closed; sock attribute should be None
self.assertEqual(self.client.sock, None)

@unittest.skipIf(sys.platform == 'cygwin',
"MSG_OOB doesn't work properly on Cygwin")
def test_abort(self):
self.client.abort()

Expand Down
Loading