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 jaraco
Recipients jaraco
Date 2009-09-16.23:18:05
SpamBayes Score 9.763246e-11
Marked as misclassified No
Message-id <1253143086.64.0.131724035197.issue6926@psf.upfronthosting.co.za>
In-reply-to
Content
It appears that somewhere between Python 2.5 and Python 2.6, some socket
constants were lost in Windows builds.

Python 2.6.2 (r262:71605, Apr 14 2009, 22:46:50) [MSC v.1500 64 bit
(AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import socket; socket.IPPROTO_IPV6
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'IPPROTO_IPV6'

Confirmed this problem on 32-bit builds and Python 3.1.1 also. I suspect
the compiler upgrade influenced this behavior.

Let me know if I can help track down the issue.
History
Date User Action Args
2009-09-16 23:18:06jaracosetrecipients: + jaraco
2009-09-16 23:18:06jaracosetmessageid: <1253143086.64.0.131724035197.issue6926@psf.upfronthosting.co.za>
2009-09-16 23:18:05jaracolinkissue6926 messages
2009-09-16 23:18:05jaracocreate