summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-11-11 10:06:38 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-11-11 10:06:38 (GMT)
commita27c064428c9e3b601be69876ef7e7299a3e0b7f (patch)
tree9b81e5bf040ba465e4e2c91f3776335ce1c56325 /Misc
parent839102603cf81496b5b5c663fff6c06106db2a15 (diff)
parent62e32d6352e318ed03eb519aedbc975b772114b5 (diff)
downloadcpython-a27c064428c9e3b601be69876ef7e7299a3e0b7f.zip
cpython-a27c064428c9e3b601be69876ef7e7299a3e0b7f.tar.gz
cpython-a27c064428c9e3b601be69876ef7e7299a3e0b7f.tar.bz2
Issue #19398: Extra slash no longer added to sys.path components in case of
empty compile-time PYTHONPATH components. This fixes some tests in -S or -I modes.
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 15f5725..cb244f3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.6.0 beta 4
Core and Builtins
-----------------
+- Issue #19398: Extra slash no longer added to sys.path components in case of
+ empty compile-time PYTHONPATH components.
+
- Issue #28583: PyDict_SetDefault didn't combine split table when needed.
Patch by Xiang Zhang.