summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2005-08-21 14:16:04 (GMT)
committerGeorg Brandl <georg@python.org>2005-08-21 14:16:04 (GMT)
commit33a5f2af59ddcf3f1b0447a8dbd0576fd78de303 (patch)
treec3a2210fc27ba900882d74769b56bb4443325753 /Misc
parentf755432f4141fb9f9885435c7ba2d2f6a17d03fe (diff)
downloadcpython-33a5f2af59ddcf3f1b0447a8dbd0576fd78de303.zip
cpython-33a5f2af59ddcf3f1b0447a8dbd0576fd78de303.tar.gz
cpython-33a5f2af59ddcf3f1b0447a8dbd0576fd78de303.tar.bz2
Fix BZ2File.(x)readlines() for files without a newline.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e3fbbab..8b4068e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1570,6 +1570,9 @@ Core and builtins
Extension modules
-----------------
+- Fix bz2.BZ2File.(x)readlines() for files containing one line without
+ newlines.
+
- Added socket.getservbyport(), and make the second argument in
getservbyname() and getservbyport() optional.