[Python-bugs-list] [ python-Bugs-618593 ] Windows binary missing IPv6 support

noreply@sourceforge.net noreply@sourceforge.net
Fri, 04 Oct 2002 08:11:51 -0700


Bugs item #618593, was opened at 2002-10-04 17:07
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=618593&group_id=5470

>Category: Windows
>Group: Python 2.2.1
Status: Open
Resolution: None
>Priority: 9
Submitted By: Toni Garcia (zolty)
Assigned to: Nobody/Anonymous (nobody)
Summary: Windows binary missing IPv6 support

Initial Comment:
The Windows binary build from www.python.org appears 
to be missing IPv6 support.

The IP configuration in my Windows XP + Service Pack 
1:
C:\Documents and Settings\zolty>ipconfig
Configuración IP de Windows
Adaptador Ethernet Conexión de área local          :
        Sufijo de conexión específica DNS :
        Dirección IP. . . . . . . . . . . : 192.168.0.2
        Máscara de subred . . . . . . . . : 255.255.255.0
        Dirección IP. . . . . . . . . . . : 
fe80::200:1cff:fe04:cae6%4
        Puerta de enlace predeterminada   : 192.168.0.1

Here's an example of a socket with ipv6 protocol/family:

Python 2.2.1 (#34, Apr  9 2002, 19:34:33) [MSC 32 bit 
(Intel)] on win32
Type "help", "copyright", "credits" or "license" for more 
information.
>>> import socket
>>> a=socket.socket
(socket.AF_INET6,socket.SOCK_STREAM)
Traceback (most recent call last):
  File "<stdin>", line 1, in ?
AttributeError: 'module' object has no 
attribute 'AF_INET6'
>>>

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=618593&group_id=5470