mirror of https://github.com/python/cpython
Merge 3.6
This commit is contained in:
commit
daa9e239f0
|
@ -1490,7 +1490,8 @@ class GeneralModuleTests(unittest.TestCase):
|
||||||
# type and populates the socket object.
|
# type and populates the socket object.
|
||||||
#
|
#
|
||||||
# On Windows this trick won't work, so the test is skipped.
|
# 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:
|
with socket.socket(family=42424, type=13331, fileno=fd) as s:
|
||||||
self.assertEqual(s.family, 42424)
|
self.assertEqual(s.family, 42424)
|
||||||
self.assertEqual(s.type, 13331)
|
self.assertEqual(s.type, 13331)
|
||||||
|
|
Loading…
Reference in New Issue