commit | e0a0bd6eaa40c132e1a270df6ae73c1d87628188 | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@gmail.com> | Tue Feb 24 14:30:43 2015 +0100 |
committer | Victor Stinner <victor.stinner@gmail.com> | Tue Feb 24 14:30:43 2015 +0100 |
tree | e74c2165733b9c9df97bbb2f4d150efb21d04d95 | |
parent | 0e4da40e58a81823ecd39f6e882367e2ce622b32 [diff] [blame] |
Issue #23458: On POSIX, the file descriptor kept open by os.urandom() is now set to non inheritable
diff --git a/Misc/NEWS b/Misc/NEWS index b49d5dd..be68961 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -18,6 +18,9 @@ Library ------- +- Issue #23458: On POSIX, the file descriptor kept open by os.urandom() is now + set to non inheritable + - Issue #22113: struct.pack_into() now supports new buffer protocol (in particular accepts writable memoryview).