Patch by Jp Calderone:

- The socket module now provides the functions inet_pton and inet_ntop
  for converting between string and packed representation of IP addresses.
  See SF patch #658327.

This still needs a bit of work in the doc area, because it is not
available on all platforms (especially not on Windows).
This commit is contained in:
Guido van Rossum 2003-04-25 05:48:32 +00:00
parent 45f4130029
commit 47dfa4a89a
6 changed files with 221 additions and 1 deletions

View file

@ -83,6 +83,7 @@ Alastair Burt
Tarn Weisner Burton
Lee Busby
Ralph Butler
Jp Calderone
Daniel Calvelo
Brett Cannon
Mike Carlton

View file

@ -383,6 +383,10 @@ Extension modules
zlib test suite using the unittest module. (SF bug #640230 and
patch #678531.)
- The socket module now provides the functions inet_pton and inet_ntop
for converting between string and packed representation of IP addresses.
See SF patch #658327.
- Added an itertools module containing high speed, memory efficient
looping constructs inspired by tools from Haskell and SML.