diff options
author | Alexey Izbyshev <izbyshev@users.noreply.github.com> | 2018-03-01 09:13:56 (GMT) |
---|---|---|
committer | Xiang Zhang <angwerzx@126.com> | 2018-03-01 09:13:56 (GMT) |
commit | 3e197c7a6740d564ad52fb7901c07d5ff49460f5 (patch) | |
tree | 07e014f8da5617fa3eedd7b218a21a101da13095 /Misc | |
parent | 982c7233846e8fbdb1e0ca23c8ae3f6362645307 (diff) | |
download | cpython-3e197c7a6740d564ad52fb7901c07d5ff49460f5.zip cpython-3e197c7a6740d564ad52fb7901c07d5ff49460f5.tar.gz cpython-3e197c7a6740d564ad52fb7901c07d5ff49460f5.tar.bz2 |
bpo-32903: Fix a memory leak in os.chdir() on Windows (GH-5801)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Windows/2018-02-28-11-03-24.bpo-32903.1SXY4t.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Windows/2018-02-28-11-03-24.bpo-32903.1SXY4t.rst b/Misc/NEWS.d/next/Windows/2018-02-28-11-03-24.bpo-32903.1SXY4t.rst new file mode 100644 index 0000000..a20a414 --- /dev/null +++ b/Misc/NEWS.d/next/Windows/2018-02-28-11-03-24.bpo-32903.1SXY4t.rst @@ -0,0 +1,2 @@ +Fix a memory leak in os.chdir() on Windows if the current directory is set +to a UNC path. |