commit | 46f5b35bc0d680501629f75a86e40ee4b5798ed7 | [log] [tgz] |
---|---|---|
author | Serhiy Storchaka <storchaka@gmail.com> | Mon Jan 28 20:19:50 2013 +0200 |
committer | Serhiy Storchaka <storchaka@gmail.com> | Mon Jan 28 20:19:50 2013 +0200 |
tree | 5177926695a9a72a23fcf13e9d26e04980e5dfff | |
parent | 80a0a1e170be079aeafd0ac4d113adbcb5fa6f18 [diff] [blame] |
Issue #17051: Fix a memory leak in os.path.isdir() on Windows. Patch by Robert Xiao.
diff --git a/Misc/NEWS b/Misc/NEWS index cd16670..31c4a8a 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -200,6 +200,9 @@ Library ------- +- Issue #17051: Fix a memory leak in os.path.isdir() on Windows. Patch by + Robert Xiao. + - Issue #9290: In IDLE the sys.std* streams now implement io.TextIOBase interface and support all mandatory methods and properties.