summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2006-08-02 13:53:55 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2006-08-02 13:53:55 (GMT)
commit961b91bd3c48af639acbf20bbf15a85e7152ff6e (patch)
tree4431b108f80ee972a2796bee6272523d1560d200 /Misc
parent5c387f2e5d4f21f9e8104d4d5410fc1fd91fa7e9 (diff)
downloadcpython-961b91bd3c48af639acbf20bbf15a85e7152ff6e.zip
cpython-961b91bd3c48af639acbf20bbf15a85e7152ff6e.tar.gz
cpython-961b91bd3c48af639acbf20bbf15a85e7152ff6e.tar.bz2
Correction of patch #1455898: In the mbcs decoder, set final=False
for stream decoder, but final=True for the decode function.
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 13323f5..1923b4f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -64,6 +64,9 @@ Core and builtins
Library
-------
+- Correction of patch #1455898: In the mbcs decoder, set final=False
+ for stream decoder, but final=True for the decode function.
+
- os.urandom no longer masks unrelated exceptions like SystemExit or
KeyboardInterrupt.