Staging
v0.8.1
Revision e7de2061b405d93cd5fa55c553d6cfc51bfb853e authored by Guido van Rossum on 24 March 1999, 17:24:33 UTC, committed by Guido van Rossum on 24 March 1999, 17:24:33 UTC
data struct before calling gethostby{name,addr}_r(); (2) ignore the
3/5/6 args determinations made by the configure script and switch on
platform identifiers instead:

AIX, OSF have 3 args
Sun, SGI have 5 args
Linux has 6 args

On all other platforms, undef HAVE_GETHOSTBYNAME_R altogether.
1 parent 7b6c71f
Raw File
builtin.py
# B/W compat hack so code that says "import builtin" won't break after
# name change from builtin to __builtin__.
from __builtin__ import *
back to top