[Python-Dev] New branch for r23c2 work

Skip Montanaro skip@pobox.com
Tue, 22 Jul 2003 05:32:12 -0500


    >> error = getaddrinfo(0, "0", &hints, &res);

    Martin> Is this really the same call that runs in Python? I thought it
    Martin> should have "" as the first argument instead of 0.

In this case, yes.  There are other calls to getaddrinfo in socketmodule.c
which have non-NULL first args, but the first one in setipaddr() which is
causing all the fuss has NULL as the first argument.

Skip