components/python/python34/patches/26-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-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'