mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
Merge 3.6
This commit is contained in:
@@ -1490,7 +1490,8 @@ class GeneralModuleTests(unittest.TestCase):
|
||||
# type and populates the socket object.
|
||||
#
|
||||
# On Windows this trick won't work, so the test is skipped.
|
||||
fd, _ = tempfile.mkstemp()
|
||||
fd, path = tempfile.mkstemp()
|
||||
self.addCleanup(os.unlink, path)
|
||||
with socket.socket(family=42424, type=13331, fileno=fd) as s:
|
||||
self.assertEqual(s.family, 42424)
|
||||
self.assertEqual(s.type, 13331)
|
||||
|
||||
Reference in New Issue
Block a user