summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-05-25 21:12:34 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-05-25 21:12:34 (GMT)
commit479736b31c2500bc12d09c3ff766de6a2ec68ac0 (patch)
tree27bfaf3fc19f10f085c0606a5c0381133aff5726 /Misc
parent0b2f5180d73f9239ae621014d0af478ac1887155 (diff)
downloadcpython-479736b31c2500bc12d09c3ff766de6a2ec68ac0.zip
cpython-479736b31c2500bc12d09c3ff766de6a2ec68ac0.tar.gz
cpython-479736b31c2500bc12d09c3ff766de6a2ec68ac0.tar.bz2
Issue #4769: Fix main() function of the base64 module, use sys.stdin.buffer and
sys.stdout.buffer (instead of sys.stdin and sys.stdout) to use the bytes API
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 ecf5744..5d20ca4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -392,6 +392,10 @@ C-API
Library
-------
+- Issue #4769: Fix main() function of the base64 module, use sys.stdin.buffer
+ and sys.stdout.buffer (instead of sys.stdin and sys.stdout) to use the bytes
+ API
+
- Issue #8770: now sysconfig displays information when it's called as
a script. Initial idea by Sridhar Ratnakumar.