summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-07-11 04:43:14 (GMT)
committerGitHub <noreply@github.com>2017-07-11 04:43:14 (GMT)
commit7527c32f5fedc3260d767900f1014495c0a1b7a5 (patch)
treed3291f8f27925dea45b58d4f6334cc52eb332f3d /Misc
parent7f567e7472dd6c3d066eec1c204301df251484b5 (diff)
downloadcpython-7527c32f5fedc3260d767900f1014495c0a1b7a5.zip
cpython-7527c32f5fedc3260d767900f1014495c0a1b7a5.tar.gz
cpython-7527c32f5fedc3260d767900f1014495c0a1b7a5.tar.bz2
[3.5] bpo-30879: os.listdir() and os.scandir() now emit bytes names when (GH-2634) (#2657)
called with bytes-like argument. (cherry picked from commit 1180e5a51871fa53ca6892e83fd2e69dc2600447)
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 4a8137f..966a011 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -59,6 +59,9 @@ Extension Modules
Library
-------
+- bpo-30879: os.listdir() and os.scandir() now emit bytes names when called
+ with bytes-like argument.
+
- bpo-30746: Prohibited the '=' character in environment variable names in
``os.putenv()`` and ``os.spawn*()``.