Merge 3.6

This commit is contained in:
Xavier de Gaye 2016-11-13 19:42:09 +01:00
commit daa9e239f0
1 changed files with 2 additions and 1 deletions

View File

@ -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)