commit | 38f1afe8d112087491f04fae44f5f0a3f6b5c839 | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Wed May 08 01:51:37 2013 +0200 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Wed May 08 01:51:37 2013 +0200 |
tree | c1566694a24266956121b800f74761c197a40c81 | |
parent | 59391207c65aaae08179d299252a93e05056cebb [diff] [blame] |
Issue #17926: Fix dbm.__contains__ on 64-bit big-endian machines.
diff --git a/Misc/NEWS b/Misc/NEWS index 7cef7ef..466781c 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -34,6 +34,8 @@ Library ------- +- Issue #17926: Fix dbm.__contains__ on 64-bit big-endian machines. + - Issue #17918: When using SSLSocket.accept(), if the SSL handshake failed on the new socket, the socket would linger indefinitely. Thanks to Peter Saveliev for reporting.