summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-08-20 17:04:47 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-08-20 17:04:47 (GMT)
commitec67d187ee9a86aaf1108643832f69ad3bc0e369 (patch)
tree4204908c059a42f7890e3fd765e6377f5fe8db59 /Misc
parent98985a1980304b3c8fee9b9efdac015c6098bd67 (diff)
downloadcpython-ec67d187ee9a86aaf1108643832f69ad3bc0e369.zip
cpython-ec67d187ee9a86aaf1108643832f69ad3bc0e369.tar.gz
cpython-ec67d187ee9a86aaf1108643832f69ad3bc0e369.tar.bz2
Issue #13461: Fix a crash in the TextIOWrapper.tell method on 64-bit platforms.
Patch by Yogesh Chaudhari.
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 450f862..27fa09d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -66,6 +66,9 @@ Core and Builtins
Library
-------
+- Issue #13461: Fix a crash in the TextIOWrapper.tell method on 64-bit
+ platforms. Patch by Yogesh Chaudhari.
+
- Issue #18777: The ssl module now uses the new CRYPTO_THREADID API of
OpenSSL 1.0.0+ instead of the deprecated CRYPTO id callback function.