This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author skn78
Recipients ned.deily, paul.moore, skn78, steve.dower, thatiparthy, tim.golden, tjguk, zach.ware
Date 2017-12-21.20:06:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1513886802.14.0.213398074469.issue32394@psf.upfronthosting.co.za>
In-reply-to
Content
My OS version is Windows 7 x64.
I ran the script on the same computer, but with different versions of the python:

import socket
import platform

print('1) OS Info: ', platform.architecture(), platform.platform())
print('2) Python Info: ', platform.python_build(), platform.python_compiler())
print('3) TCP_KEEPCNT = ', hasattr(socket, 'TCP_KEEPCNT') )

Result for python 3.6.3:
1) OS Info:  ('64bit', 'WindowsPE') Windows-7-6.1.7601-SP1
2) Python Info:  ('v3.6.3:2c5fed8', 'Oct  3 2017 18:11:49') MSC v.1900 64 bit (AMD64)
3) TCP_KEEPCNT =  False

Result for python 3.6.4:
1) OS Info:  ('64bit', 'WindowsPE') Windows-7-6.1.7601-SP1
2) Python Info:  ('v3.6.4:d48eceb', 'Dec 19 2017 06:54:40') MSC v.1900 64 bit (AMD64)
3) TCP_KEEPCNT =  True
History
Date User Action Args
2017-12-21 20:06:42skn78setrecipients: + skn78, paul.moore, tim.golden, ned.deily, zach.ware, steve.dower, thatiparthy, tjguk
2017-12-21 20:06:42skn78setmessageid: <1513886802.14.0.213398074469.issue32394@psf.upfronthosting.co.za>
2017-12-21 20:06:42skn78linkissue32394 messages
2017-12-21 20:06:42skn78create