diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-04-17 15:05:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-17 15:05:30 (GMT) |
commit | 2c4c02f8a876fcf084575dcaf857a0236c81261a (patch) | |
tree | 6ef38d2e332c55e6b528b0f30e14828c8d73d8c2 /Lib/posixpath.py | |
parent | 228a3c99bdb2d02771bead66a0beabafad3a90d3 (diff) | |
download | cpython-2c4c02f8a876fcf084575dcaf857a0236c81261a.zip cpython-2c4c02f8a876fcf084575dcaf857a0236c81261a.tar.gz cpython-2c4c02f8a876fcf084575dcaf857a0236c81261a.tar.bz2 |
bpo-35755: Remove current directory from posixpath.defpath (GH-11586)
Document the change in a NEWS entry of the Security category.
Diffstat (limited to 'Lib/posixpath.py')
-rw-r--r-- | Lib/posixpath.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/posixpath.py b/Lib/posixpath.py index 21ce72f..ecb4e5a 100644 --- a/Lib/posixpath.py +++ b/Lib/posixpath.py @@ -18,7 +18,7 @@ pardir = '..' extsep = '.' sep = '/' pathsep = ':' -defpath = ':/bin:/usr/bin' +defpath = '/bin:/usr/bin' altsep = None devnull = '/dev/null' |