diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-09-11 10:38:17 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-09-11 10:38:17 (GMT) |
commit | f9fdfa7c4e4b5cd02f5bc23a928037d644c8cdff (patch) | |
tree | b8717eb220ebf9cc47899d1baf187deac3071835 /Misc | |
parent | dddfffeda1ff8496258cd68e1e66b67a8632ad77 (diff) | |
parent | ec1a498a01da2b4df22413ff778529d84111c2ee (diff) | |
download | cpython-f9fdfa7c4e4b5cd02f5bc23a928037d644c8cdff.zip cpython-f9fdfa7c4e4b5cd02f5bc23a928037d644c8cdff.tar.gz cpython-f9fdfa7c4e4b5cd02f5bc23a928037d644c8cdff.tar.bz2 |
Merge 3.4
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -14,6 +14,12 @@ Core and Builtins Library ------- +- Issue #24684: socket.socket.getaddrinfo() now calls + PyUnicode_AsEncodedString() instead of calling the encode() method of the + host, to handle correctly custom string with an encode() method which doesn't + return a byte string. The encoder of the IDNA codec is now called directly + instead of calling the encode() method of the string. + - Issue #25060: Correctly compute stack usage of the BUILD_MAP opcode. - Issue #24857: Comparing call_args to a long sequence now correctly returns a |