mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
Issue #11444: Merge fix from 3.1.
This commit is contained in:
commit
d9512e9ac1
1 changed files with 3 additions and 0 deletions
|
@ -1793,6 +1793,7 @@ def shutdown(handlerList=_handlerList):
|
||||||
h = wr()
|
h = wr()
|
||||||
if h:
|
if h:
|
||||||
try:
|
try:
|
||||||
|
h.acquire()
|
||||||
h.flush()
|
h.flush()
|
||||||
h.close()
|
h.close()
|
||||||
except (IOError, ValueError):
|
except (IOError, ValueError):
|
||||||
|
@ -1801,6 +1802,8 @@ def shutdown(handlerList=_handlerList):
|
||||||
# references to them are still around at
|
# references to them are still around at
|
||||||
# application exit.
|
# application exit.
|
||||||
pass
|
pass
|
||||||
|
finally:
|
||||||
|
h.release()
|
||||||
except:
|
except:
|
||||||
if raiseExceptions:
|
if raiseExceptions:
|
||||||
raise
|
raise
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue