commit | dcf617152e1d4c4a5e7965733928858a9c0936ca | [log] [tgz] |
---|---|---|
author | Victor Stinner <vstinner@redhat.com> | Tue Mar 19 16:09:27 2019 +0100 |
committer | GitHub <noreply@github.com> | Tue Mar 19 16:09:27 2019 +0100 |
tree | 61c2ce7f9a4bcb8a1f48efb1a24b0f50d4029372 | |
parent | f5f336a819a3d881bb217bf8f9b5cacba03a4e45 [diff] |
bpo-36236: Handle removed cwd at Python init (GH-12424) At Python initialization, the current directory is no longer prepended to sys.path if it has been removed. Rename _PyPathConfig_ComputeArgv0() to _PyPathConfig_ComputeSysPath0() to avoid confusion between argv[0] and sys.path[0].