diff options
author | Guido van Rossum <guido@python.org> | 2003-04-25 05:48:32 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2003-04-25 05:48:32 (GMT) |
commit | 47dfa4a89ad1ce110a8218e43cae228302019297 (patch) | |
tree | 1bd9ec116ee42905854d5cb59fdacc00a432e322 /Misc | |
parent | 45f41300298ca522fba9366989317f34a2d7e2db (diff) | |
download | cpython-47dfa4a89ad1ce110a8218e43cae228302019297.zip cpython-47dfa4a89ad1ce110a8218e43cae228302019297.tar.gz cpython-47dfa4a89ad1ce110a8218e43cae228302019297.tar.bz2 |
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).
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 4 |
2 files changed, 5 insertions, 0 deletions
@@ -83,6 +83,7 @@ Alastair Burt Tarn Weisner Burton Lee Busby Ralph Butler +Jp Calderone Daniel Calvelo Brett Cannon Mike Carlton @@ -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. |