Issue #21207: Detect when the os.urandom cached fd has been closed or replaced, and open it anew.

This commit is contained in:
Antoine Pitrou 2014-04-26 14:33:03 +02:00
parent 86fe53e976
commit e472aeafc3
3 changed files with 85 additions and 10 deletions

View file

@ -39,6 +39,9 @@ Core and Builtins
Library
-------
- Issue #21207: Detect when the os.urandom cached fd has been closed or
replaced, and open it anew.
- Issue #21291: subprocess's Popen.wait() is now thread safe so that
multiple threads may be calling wait() or poll() on a Popen instance
at the same time without losing the Popen.returncode value.