diff options
author | Georg Brandl <georg@python.org> | 2008-01-19 20:22:13 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-01-19 20:22:13 (GMT) |
commit | 309501a61772f4cb72f1004fcbe73964b4130672 (patch) | |
tree | 8737924e043d901d7c62910a97c6aebdd8e62f8e /Misc | |
parent | 15ce880cc8c3de29e91e2e867b2db0b19a48e5f3 (diff) | |
download | cpython-309501a61772f4cb72f1004fcbe73964b4130672.zip cpython-309501a61772f4cb72f1004fcbe73964b4130672.tar.gz cpython-309501a61772f4cb72f1004fcbe73964b4130672.tar.bz2 |
#1663329: add os.closerange() to close a range of fds,
ignoring errors, and use this in subprocess to speed up
subprocess creation in close_fds mode. Patch by Mike Klaas.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1019,6 +1019,9 @@ Library Extension Modules ----------------- +- Patch #1663329: added ``os.closerange()`` function to quickly close a range + of file descriptors without considering errors. + - Patch 976880: ``mmap`` objects now have an ``rfind`` method that works as expected. ``mmap.find`` also takes an optional ``end`` parameter. |