summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-02-09 09:43:31 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2012-02-09 09:43:31 (GMT)
commit607e31eddf07865fa6308cb7f5e2f75d290d1bda (patch)
treeec2846fa2489b04941e84b77329a63c936c9cd20 /Misc/NEWS
parentebf691d64cde6492f075d65e9f87651124aa19f4 (diff)
downloadcpython-607e31eddf07865fa6308cb7f5e2f75d290d1bda.zip
cpython-607e31eddf07865fa6308cb7f5e2f75d290d1bda.tar.gz
cpython-607e31eddf07865fa6308cb7f5e2f75d290d1bda.tar.bz2
Fix Issue #6005: Examples in the socket library documentation use sendall,
where relevant, instead send method. Patch contributed by Brian Brazil.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 64c2a8a..fec58ea 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -90,6 +90,9 @@ Core and Builtins
Library
-------
+- Issue #6005: Examples in the socket library documentation use sendall, where
+ relevant, instead send method.
+
- Issue #10811: Fix recursive usage of cursors. Instead of crashing,
raise a ProgrammingError now.