summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-08-16 17:36:42 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-08-16 17:36:42 (GMT)
commit79766636b6fbc7e01af160008df9cd31112716d6 (patch)
tree3a14e0774a6549426c477b6af2cd2a5fbb723248 /Misc
parent982c018b3292e368e3fd808e36d91023296c5255 (diff)
downloadcpython-79766636b6fbc7e01af160008df9cd31112716d6.zip
cpython-79766636b6fbc7e01af160008df9cd31112716d6.tar.gz
cpython-79766636b6fbc7e01af160008df9cd31112716d6.tar.bz2
Issue #9599: Create PySys_FormatStdout() and PySys_FormatStderr()
Write a message formatted by PyUnicode_FromFormatV() to sys.stdout and sys.stderr.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9ad66f5..7deedeb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@ What's New in Python 3.2 Alpha 2?
Core and Builtins
-----------------
+- Issue #9599: Create PySys_FormatStdout() and PySys_FormatStderr() functions
+ to write a message formatted by PyUnicode_FromFormatV() to sys.stdout and
+ sys.stderr.
+
- Issue #9542: Create PyUnicode_FSDecoder() function, a ParseTuple converter:
decode bytes objects to unicode using PyUnicode_DecodeFSDefaultAndSize();
str objects are output as-is.