summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-07-11 03:36:46 (GMT)
committerGitHub <noreply@github.com>2017-07-11 03:36:46 (GMT)
commit1180e5a51871fa53ca6892e83fd2e69dc2600447 (patch)
treeb05732085cdc4aa1995c163f32bc7a04927cef7b /Misc
parent4f9a446f3fb42f800e73cd9414dd1eccb3ca4fa7 (diff)
downloadcpython-1180e5a51871fa53ca6892e83fd2e69dc2600447.zip
cpython-1180e5a51871fa53ca6892e83fd2e69dc2600447.tar.gz
cpython-1180e5a51871fa53ca6892e83fd2e69dc2600447.tar.bz2
bpo-30879: os.listdir() and os.scandir() now emit bytes names when (#2634)
called with bytes-like argument.
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 2f2faff..ce4874a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -376,6 +376,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*()``.