components/python/python27/patches/27-defpath.patch
author John Beck <John.Beck@Oracle.COM>
Mon, 22 Feb 2016 14:53:24 -0800
changeset 5482 c81e6261361f
permissions -rw-r--r--
22728345 cwd is first in python's os.path.defpath

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'