commit | e88a2445bc31dce0caa0be9b543689a953c1f920 | [log] [tgz] |
---|---|---|
author | Richard Oudkerk <shibturn@gmail.com> | Tue Aug 14 11:41:32 2012 +0100 |
committer | Richard Oudkerk <shibturn@gmail.com> | Tue Aug 14 11:41:32 2012 +0100 |
tree | cdb9dc044ec4584b1610e6f03ce995ac4a9f5f75 | |
parent | 296d1bea6aab9c5cb78ec4f90369352aba64d7c5 [diff] [blame] |
Issue #15646: Prevent equivalent of a fork bomb when using multiprocessing on Windows without the "if __name__ == '__main__'" idiom.
diff --git a/Misc/NEWS b/Misc/NEWS index 30e6b96..5d69e95 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -101,6 +101,10 @@ Library ------- +- Issue #15646: Prevent equivalent of a fork bomb when using + multiprocessing on Windows without the "if __name__ == '__main__'" + idiom. + - Issue #15424: Add a __sizeof__ implementation for array objects. Patch by Ludwig Hähne.