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 fb21652 commit 510ef3fCopy full SHA for 510ef3f
1 file changed
Lib/test/test_socket.py
@@ -6219,6 +6219,9 @@ def testSurrogateescapeBind(self):
6219
self.addCleanup(os_helper.unlink, path)
6220
self.assertEqual(self.sock.getsockname(), path)
6221
6222
+ @unittest.skipIf(sys.platform == 'win32',
6223
+ 'Windows have a bug which can\'t unlink sock file with '
6224
+ 'TESTFN_UNENCODABLE in it\'s name')
6225
def testUnencodableAddr(self):
6226
# Test binding to a pathname that cannot be encoded in the
6227
# file system encoding.
0 commit comments