summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-03-17 21:40:18 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-03-17 21:40:18 (GMT)
commit9befeb3743aaaee6aef036b5a1092cc02d9b4dfa (patch)
tree1ae591fd2fac327fc5d689d4e10fea0c03cd24de /Misc
parentf40834f39b7bf1e667fbe040fe869232d2488f60 (diff)
parent5e98141f9f576934fe5635c66614f82be1ee0a9a (diff)
downloadcpython-9befeb3743aaaee6aef036b5a1092cc02d9b4dfa.zip
cpython-9befeb3743aaaee6aef036b5a1092cc02d9b4dfa.tar.gz
cpython-9befeb3743aaaee6aef036b5a1092cc02d9b4dfa.tar.bz2
Issue #5421: merge fix
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 432441a..328e44d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -40,6 +40,8 @@ Core and Builtins
Library
-------
+- Issue #5421: Fix misleading error message when one of socket.sendto()'s
+ arguments has the wrong type. Patch by Nikita Vetoshkin.
- Issue #10979: unittest stdout buffering now works with class and module
setup and teardown.