Kaydet (Commit) 9fdd11b3 authored tarafından Vinay Sajip's avatar Vinay Sajip

Issue #9947: logging: Fixed locking bug in stopListening.

üst 32fb6a81
...@@ -917,8 +917,10 @@ def stopListening(): ...@@ -917,8 +917,10 @@ def stopListening():
Stop the listening server which was created with a call to listen(). Stop the listening server which was created with a call to listen().
""" """
global _listener global _listener
if _listener: logging._acquireLock()
logging._acquireLock() try:
_listener.abort = 1 if _listener:
_listener = None _listener.abort = 1
_listener = None
finally:
logging._releaseLock() logging._releaseLock()
...@@ -68,6 +68,8 @@ Core and Builtins ...@@ -68,6 +68,8 @@ Core and Builtins
Library Library
------- -------
- Issue #9947: logging: Fixed locking bug in stopListening.
- Issue #9945: logging: Fixed locking bugs in addHandler/removeHandler. - Issue #9945: logging: Fixed locking bugs in addHandler/removeHandler.
- Issue #9936: Fixed executable lines' search in the trace module. - Issue #9936: Fixed executable lines' search in the trace module.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment