From: Serhiy Storchaka Date: Fri, 11 Nov 2016 10:07:48 +0000 (+0200) Subject: Issue #19398: Extra slash no longer added to sys.path components in case of X-Git-Tag: v3.7.0a1~2009 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ac40c6c575d2f6e619b998b7b91437f6a93bcde2;p=python 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. --- ac40c6c575d2f6e619b998b7b91437f6a93bcde2 diff --cc Misc/NEWS index 0d4e72da3a,cb244f3a35..c463efda61 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,12 -10,9 +10,15 @@@ What's New in Python 3.7.0 alpha Core and Builtins ----------------- + - Issue #19398: Extra slash no longer added to sys.path components in case of + empty compile-time PYTHONPATH components. + +- Issue #28621: Sped up converting int to float by reusing faster bits counting + implementation. Patch by Adrian Wielgosik. + +- Issue #28580: Optimize iterating split table values. + Patch by Xiang Zhang. + - Issue #28583: PyDict_SetDefault didn't combine split table when needed. Patch by Xiang Zhang.