mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +00:00
Remove non-existent paths.
This commit is contained in:
parent
75be012cba
commit
cc45466b8f
2 changed files with 3 additions and 1 deletions
|
|
@ -79,7 +79,7 @@ for dir in sys.path:
|
|||
# if they only differ in case); turn relative paths into absolute
|
||||
# paths.
|
||||
dir, dircase = makepath(dir)
|
||||
if not dircase in _dirs_in_sys_path:
|
||||
if not dircase in _dirs_in_sys_path and os.path.exists(dir):
|
||||
L.append(dir)
|
||||
_dirs_in_sys_path[dircase] = 1
|
||||
sys.path[:] = L
|
||||
|
|
|
|||
|
|
@ -276,6 +276,8 @@ Extension modules
|
|||
Library
|
||||
-------
|
||||
|
||||
- site.py now removes paths that do not exist.
|
||||
|
||||
- The ptcp154 codec was added for Kazakh character set support.
|
||||
|
||||
- Support non-anonymous ftp URLs in urllib2.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue