summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2014-02-28 14:27:29 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2014-02-28 14:27:29 (GMT)
commit815b41b1cdb98686fc3f9cdf995b6983c12c04b3 (patch)
tree58c273e0da20ff65f83301041971ec3e723bd1d3 /Misc
parent9db1ab82508cd4be4195e520da8cb8d86cd1f7e4 (diff)
downloadcpython-815b41b1cdb98686fc3f9cdf995b6983c12c04b3.zip
cpython-815b41b1cdb98686fc3f9cdf995b6983c12c04b3.tar.gz
cpython-815b41b1cdb98686fc3f9cdf995b6983c12c04b3.tar.bz2
Issue #20731: Properly position in source code files even if they
are opened in text mode. Patch by Serhiy Storchaka.
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 4c99dd3..3b70783 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.3.5 release candidate 1?
Core and Builtins
-----------------
+- Issue #20731: Properly position in source code files even if they
+ are opened in text mode. Patch by Serhiy Storchaka.
+
- Issue #19619: str.encode, bytes.decode and bytearray.decode now use an
internal API to throw LookupError for known non-text encodings, rather
than attempting the encoding or decoding operation and then throwing a