summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-04-16 12:47:52 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-04-16 12:47:52 (GMT)
commita5ab4fcf68104495056d1ddedb9726fed09ba58e (patch)
tree7a9e131ea0abf0c4b5789b0e7d3d2ba9cbf1de44 /Misc
parent81eb8d46100beff4acd564319c607df9f70f50cc (diff)
downloadcpython-a5ab4fcf68104495056d1ddedb9726fed09ba58e.zip
cpython-a5ab4fcf68104495056d1ddedb9726fed09ba58e.tar.gz
cpython-a5ab4fcf68104495056d1ddedb9726fed09ba58e.tar.bz2
Merged revisions 80105 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r80105 | victor.stinner | 2010-04-16 13:45:13 +0200 (ven., 16 avril 2010) | 3 lines Issue #8412: os.system() now accepts bytes, bytearray and str with surrogates. ........
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 536ea43..1a6d17a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -184,6 +184,9 @@ Core and Builtins
Library
-------
+- Issue #8412: os.system() now accepts bytes, bytearray and str with
+ surrogates.
+
- Issue #4282: Fix the main function of the profile module for a non-ASCII
script, open the file in binary mode and not in text mode with the default
(utf8) encoding.