summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-11-11 10:05:01 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-11-11 10:05:01 (GMT)
commit62e32d6352e318ed03eb519aedbc975b772114b5 (patch)
treefc1c9a969d8f3cb0ef30a5d6275fe5ba9a205882 /Misc
parentdaeddc48a469b38c2817ecd1b70ef0fba6fb6ce9 (diff)
downloadcpython-62e32d6352e318ed03eb519aedbc975b772114b5.zip
cpython-62e32d6352e318ed03eb519aedbc975b772114b5.tar.gz
cpython-62e32d6352e318ed03eb519aedbc975b772114b5.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 c408e99..6c9d0bc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: TBA
Core and Builtins
-----------------
+- Issue #19398: Extra slash no longer added to sys.path components in case of
+ empty compile-time PYTHONPATH components.
+
- Issue #28426: Fixed potential crash in PyUnicode_AsDecodedObject() in debug
build.