[Pythonmac-SIG] Darwin Python: Bus error with sockets

Just van Rossum just@letterror.com
Mon, 30 Jul 2001 14:25:49 +0200


Python was built from current CVS:

[localhost:~/python] just% python
Python 2.2a0 (#1, 07/30/01, 13:21:09) 
[GCC Apple DevKit-based CPP 6.0alpha] on darwin1
Type "help", "copyright", "credits" or "license" for more information.
>>> from socket import *
>>> s = socket(AF_INET, SOCK_STREAM)
>>> s.connect(("www.letterror.com", 80))
Bus error
[localhost:~/python] just%

Could this have anything to do with the recently added IPv6 support?

Just