# HG changeset patch # User John Beck # Date 1456181604 28800 # Node ID c81e6261361f799ffecc07027d1a3f122f901241 # Parent 5e30cd0645e7cf73772b9c3dca6a62ffe285a2e1 22728345 cwd is first in python's os.path.defpath diff -r 5e30cd0645e7 -r c81e6261361f components/python/python27/patches/27-defpath.patch --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/components/python/python27/patches/27-defpath.patch Mon Feb 22 14:53:24 2016 -0800 @@ -0,0 +1,14 @@ +This patch was developed in-house, and submitted upstream: +http://bugs.python.org/issue26414 + +--- Python-2.7.11/Lib/posixpath.py.orig 2015-12-05 11:47:01.000000000 -0800 ++++ Python-2.7.11/Lib/posixpath.py 2016-02-14 08:35:25.668221850 -0800 +@@ -32,7 +32,7 @@ + extsep = '.' + sep = '/' + pathsep = ':' +-defpath = ':/bin:/usr/bin' ++defpath = '/bin:/usr/bin' + altsep = None + devnull = '/dev/null' + diff -r 5e30cd0645e7 -r c81e6261361f components/python/python34/patches/26-defpath.patch --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/components/python/python34/patches/26-defpath.patch Mon Feb 22 14:53:24 2016 -0800 @@ -0,0 +1,14 @@ +This patch was developed in-house, and submitted upstream: +http://bugs.python.org/issue26414 + +--- Python-3.4.4/Lib/posixpath.py.orig 2015-12-20 22:00:59.000000000 -0800 ++++ Python-3.4.4/Lib/posixpath.py 2016-02-19 13:05:44.295727065 -0800 +@@ -31,7 +31,7 @@ + extsep = '.' + sep = '/' + pathsep = ':' +-defpath = ':/bin:/usr/bin' ++defpath = '/bin:/usr/bin' + altsep = None + devnull = '/dev/null' + diff -r 5e30cd0645e7 -r c81e6261361f components/python/python35/patches/29-defpath.patch --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/components/python/python35/patches/29-defpath.patch Mon Feb 22 14:53:24 2016 -0800 @@ -0,0 +1,14 @@ +This patch was developed in-house, and submitted upstream: +http://bugs.python.org/issue26414 + +--- Python-3.5.1/Lib/posixpath.py.orig 2015-12-06 17:39:08.000000000 -0800 ++++ Python-3.5.1/Lib/posixpath.py 2016-02-19 13:07:38.831767392 -0800 +@@ -32,7 +32,7 @@ + extsep = '.' + sep = '/' + pathsep = ':' +-defpath = ':/bin:/usr/bin' ++defpath = '/bin:/usr/bin' + altsep = None + devnull = '/dev/null' +