summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next
diff options
context:
space:
mode:
authorZackery Spytz <zspytz@gmail.com>2018-06-29 10:14:58 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2018-06-29 10:14:58 (GMT)
commit23db935bcf258657682e66464bf8512def8af830 (patch)
tree1ee4e96c8aba659a705a51e307de77a0f97e00fc /Misc/NEWS.d/next
parentbda9c3eae3ad16e43145599ac6359bfdcaf1fd4a (diff)
downloadcpython-23db935bcf258657682e66464bf8512def8af830.zip
cpython-23db935bcf258657682e66464bf8512def8af830.tar.gz
cpython-23db935bcf258657682e66464bf8512def8af830.tar.bz2
bpo-25862: Fix assertion failures in io.TextIOWrapper.tell(). (GH-3918)
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2017-10-07-10-13-15.bpo-25862.FPYBA5.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2017-10-07-10-13-15.bpo-25862.FPYBA5.rst b/Misc/NEWS.d/next/Core and Builtins/2017-10-07-10-13-15.bpo-25862.FPYBA5.rst
new file mode 100644
index 0000000..7871636
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2017-10-07-10-13-15.bpo-25862.FPYBA5.rst
@@ -0,0 +1,2 @@
+Fix assertion failures in the ``tell()`` method of ``io.TextIOWrapper``.
+Patch by Zackery Spytz.