diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-06-05 12:27:45 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-06-05 12:27:45 (GMT) |
commit | d967fc9da2c5c094865514bd213dd702698e4dad (patch) | |
tree | 4cb062e9dc26d0e0f10e89618a9881d7c7a0b306 /Misc | |
parent | 7088b99eb8adfe16b5602bb7447d760915036a26 (diff) | |
download | cpython-d967fc9da2c5c094865514bd213dd702698e4dad.zip cpython-d967fc9da2c5c094865514bd213dd702698e4dad.tar.gz cpython-d967fc9da2c5c094865514bd213dd702698e4dad.tar.bz2 |
Issue #21515: tempfile.TemporaryFile now uses os.O_TMPFILE flag is available
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -88,6 +88,8 @@ Core and Builtins Library ------- +- Issue #21515: tempfile.TemporaryFile now uses os.O_TMPFILE flag is available. + - Issue #21618: The subprocess module could fail to close open fds that were inherited by the calling process and already higher than POSIX resource limits would otherwise allow. On systems with a functioning /proc/self/fd |