diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-09-04 15:29:57 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-09-04 15:29:57 (GMT) |
commit | 874dbe895d94eccbc8eac7214cc7ea86e0d2cb50 (patch) | |
tree | d80c1aad4bd404a2d28d527e12fb450ef68e2152 /Misc/NEWS | |
parent | d529ebb438f61d497b492268e18bc435f57ab735 (diff) | |
parent | 6fb5bae252b90b81dff19f572fe40a9051e5e51d (diff) | |
download | cpython-874dbe895d94eccbc8eac7214cc7ea86e0d2cb50.zip cpython-874dbe895d94eccbc8eac7214cc7ea86e0d2cb50.tar.gz cpython-874dbe895d94eccbc8eac7214cc7ea86e0d2cb50.tar.bz2 |
Merge 3.4 (create_stdio)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -14,6 +14,12 @@ Core and Builtins Library ------- +- Issue #24891: Fix a race condition at Python startup if the file descriptor + of stdin (0), stdout (1) or stderr (2) is closed while Python is creating + sys.stdin, sys.stdout and sys.stderr objects. These attributes are now set + to None if the creation of the object failed, instead of raising an OSError + exception. Initial patch written by Marco Paolini. + - Issue #24992: Fix error handling and a race condition (related to garbage collection) in collections.OrderedDict constructor. |