summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-02-09 09:55:56 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2012-02-09 09:55:56 (GMT)
commit0bfa963fbb45602923b858d00a44e788a4a42ad5 (patch)
tree9006f66fbabc3c4834e99df8098bf448520978e0 /Misc
parent4a2e1a0da7f1f16ee6a9ce75fdd60b4d30cb37d1 (diff)
parent6e13f130a9bde00db9fc17934987ed36da251aa7 (diff)
downloadcpython-0bfa963fbb45602923b858d00a44e788a4a42ad5.zip
cpython-0bfa963fbb45602923b858d00a44e788a4a42ad5.tar.gz
cpython-0bfa963fbb45602923b858d00a44e788a4a42ad5.tar.bz2
merged from 3.2
Issue #6005: Examples in the socket library documentation use sendall, where relevant, instead send method.
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 acc90bd..7fe19e0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -484,6 +484,9 @@ Library
make sure two listeners can't bind to the same socket/pipe (or any existing
socket/pipe).
+- 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.