[issue32903] os.chdir() may leak memory on Windows

2018-03-01 Thread Xiang Zhang
Change by Xiang Zhang : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.8 ___ Python tracker

[issue32903] os.chdir() may leak memory on Windows

2018-03-01 Thread Xiang Zhang
Xiang Zhang added the comment: New changeset 6ae75d9d1221459ab18c2599e42fcc45f9f65617 by Xiang Zhang (Miss Islington (bot)) in branch '3.7': bpo-32903: Fix a memory leak in os.chdir() on Windows (GH-5801) (#5945)

[issue32903] os.chdir() may leak memory on Windows

2018-03-01 Thread Xiang Zhang
Xiang Zhang added the comment: New changeset aa40f92240adea7067c3add8e09cec09dcf24d7f by Xiang Zhang (Alexey Izbyshev) in branch '2.7': [2.7] bpo-32903: Fix a memory leak in os.chdir() on Windows (GH-5801). (#5947)

[issue32903] os.chdir() may leak memory on Windows

2018-03-01 Thread Alexey Izbyshev
Change by Alexey Izbyshev : -- pull_requests: +5715 ___ Python tracker ___ ___

[issue32903] os.chdir() may leak memory on Windows

2018-03-01 Thread miss-islington
Change by miss-islington : -- pull_requests: +5714 ___ Python tracker ___

[issue32903] os.chdir() may leak memory on Windows

2018-03-01 Thread miss-islington
Change by miss-islington : -- pull_requests: +5713 ___ Python tracker ___

[issue32903] os.chdir() may leak memory on Windows

2018-03-01 Thread Xiang Zhang
Xiang Zhang added the comment: New changeset 3e197c7a6740d564ad52fb7901c07d5ff49460f5 by Xiang Zhang (Alexey Izbyshev) in branch 'master': bpo-32903: Fix a memory leak in os.chdir() on Windows (GH-5801)

[issue32903] os.chdir() may leak memory on Windows

2018-02-21 Thread Alexey Izbyshev
Change by Alexey Izbyshev : -- versions: +Python 2.7 ___ Python tracker ___ ___

[issue32903] os.chdir() may leak memory on Windows

2018-02-21 Thread Alexey Izbyshev
Change by Alexey Izbyshev : -- keywords: +patch pull_requests: +5579 stage: -> patch review ___ Python tracker ___

[issue32903] os.chdir() may leak memory on Windows

2018-02-21 Thread Alexey Izbyshev
New submission from Alexey Izbyshev : 'new_path' is not freed if the new directory is a UNC path longer than MAX_PATH. -- components: Extension Modules, Windows messages: 312522 nosy: izbyshev, paul.moore, steve.dower, tim.golden, vstinner, zach.ware priority: normal