commit | a555cfcb73cf677a99d29af6fa0bcfe4c35a2aeb | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@gmail.com> | Wed Mar 18 00:22:14 2015 +0100 |
committer | Victor Stinner <victor.stinner@gmail.com> | Wed Mar 18 00:22:14 2015 +0100 |
tree | fa88ce2ae8c7d2213dc3e80845405d0d8719308a | |
parent | 6562b29e13f4da98558636c43a1b242698c8f8d9 [diff] |
Issue #23694: Enhance _Py_open(), it now raises exceptions * _Py_open() now raises exceptions on error. If open() fails, it raises an OSError with the filename. * _Py_open() now releases the GIL while calling open() * Add _Py_open_noraise() when _Py_open() cannot be used because the GIL is not held