diff options
author | Georg Brandl <georg@python.org> | 2005-08-26 08:34:00 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2005-08-26 08:34:00 (GMT) |
commit | d2e3ba7a3595bfa4342ab30b5228d8d94d6c6a08 (patch) | |
tree | a2de338e899e726ce48edbd821e1fa8245897ecc /Misc | |
parent | 4550b8db567d08d8b8c6e6fd941b9a32369c0553 (diff) | |
download | cpython-d2e3ba7a3595bfa4342ab30b5228d8d94d6c6a08.zip cpython-d2e3ba7a3595bfa4342ab30b5228d8d94d6c6a08.tar.gz cpython-d2e3ba7a3595bfa4342ab30b5228d8d94d6c6a08.tar.bz2 |
patch [ 756021 ] Allow socket.inet_aton("255.255.255.255") on Windows
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -133,9 +133,12 @@ Core and builtins Extension Modules ----------------- -- Bug #1191043: Fix bz2.BZ2File.seek() for 64-bit file offsets. +- Patch #756021: Special-case socket.inet_aton('255.255.255.255') for + platforms that don't have inet_aton(). -- Bug #1215928: Fix bz2.BZ2File.(x)readlines for files containing one +- Bug #1215928: Fix bz2.BZ2File.seek() for 64-bit file offsets. + +- Bug #1191043: Fix bz2.BZ2File.(x)readlines for files containing one line without newlines. - Bug #728515: mmap.resize() now resizes the file on Unix as it did |