summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-02-09 09:54:17 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2012-02-09 09:54:17 (GMT)
commit6e13f130a9bde00db9fc17934987ed36da251aa7 (patch)
tree2b1be197ce7c94598ad2c9f52286a293b7219bcd /Misc/NEWS
parentb2c9e9ad91542e28a77efabe6b16a7021ccc34d3 (diff)
downloadcpython-6e13f130a9bde00db9fc17934987ed36da251aa7.zip
cpython-6e13f130a9bde00db9fc17934987ed36da251aa7.tar.gz
cpython-6e13f130a9bde00db9fc17934987ed36da251aa7.tar.bz2
Fix Issue #6005: Examples in the socket library documentation use sendall,
where relevant, instead send method.
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 4a38b14..242c08c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -113,6 +113,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.