blob: e21a758fc2eb05a6465efe74e6d7003e28e282a0 (
plain)
1
2
3
4
|
Fix :func:`os.stat` and :meth:`os.DirEntry.stat`: check for exceptions.
Previously, on Python built in debug mode, these functions could trigger a
fatal Python error (and abort the process) when a function succeeded with an
exception set. Patch by Victor Stinner.
|