diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-03-17 21:38:37 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-03-17 21:38:37 (GMT) |
commit | 5e98141f9f576934fe5635c66614f82be1ee0a9a (patch) | |
tree | a3b802f86e36244f1eccf469968ebab80026303d /Misc | |
parent | 9f9193ec375ed0f366b4aabfe210e7fdc3eb6b7d (diff) | |
download | cpython-5e98141f9f576934fe5635c66614f82be1ee0a9a.zip cpython-5e98141f9f576934fe5635c66614f82be1ee0a9a.tar.gz cpython-5e98141f9f576934fe5635c66614f82be1ee0a9a.tar.bz2 |
Issue #5421: Fix misleading error message when one of socket.sendto()'s
arguments has the wrong type. Patch by Nikita Vetoshkin.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -823,6 +823,7 @@ Alexandre Vassalotti Frank Vercruesse Mike Verdone Jaap Vermeulen +Nikita Vetoshkin Al Vezza Jacques A. Vidrine John Viega @@ -40,6 +40,9 @@ 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 #11401: fix handling of headers with no value; this fixes a regression relative to Python2 and the result is now the same as it was in Python2. |