Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
12dd1e8e
Commit
12dd1e8e
authored
Apr 04, 2014
by
Vinay Sajip
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #21149: Improved thread-safety in logging cleanup during interpreter shutdown.
parent
0fc8b811
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
8 deletions
+12
-8
Lib/logging/__init__.py
Lib/logging/__init__.py
+9
-8
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/logging/__init__.py
View file @
12dd1e8e
...
@@ -711,16 +711,17 @@ def _removeHandlerRef(wr):
...
@@ -711,16 +711,17 @@ def _removeHandlerRef(wr):
Remove a handler reference from the internal cleanup list.
Remove a handler reference from the internal cleanup list.
"""
"""
# This function can be called during module teardown, when globals are
# This function can be called during module teardown, when globals are
# set to None. If _acquireLock is None, assume this is the case and do
# set to None. It can also be called from another thread. So we need to
# nothing.
# pre-emptively grab the necessary globals and check if they're None,
if
(
_acquireLock
is
not
None
and
_handlerList
is
not
None
and
# to prevent race conditions and failures during interpreter shutdown.
_releaseLock
is
not
None
):
acquire
,
release
,
handlers
=
_acquireLock
,
_releaseLock
,
_handlerList
_acquireLock
()
if
acquire
and
release
and
handlers
:
acquire
()
try
:
try
:
if
wr
in
_handlerList
:
if
wr
in
handlers
:
_handlerList
.
remove
(
wr
)
handlers
.
remove
(
wr
)
finally
:
finally
:
_releaseLock
()
release
()
def
_addHandlerRef
(
handler
):
def
_addHandlerRef
(
handler
):
"""
"""
...
...
Misc/NEWS
View file @
12dd1e8e
...
@@ -27,6 +27,9 @@ Core and Builtins
...
@@ -27,6 +27,9 @@ Core and Builtins
Library
Library
-------
-------
- Issue #21149: Improved thread-safety in logging cleanup during interpreter
shutdown. Thanks to Devin Jeanpierre for the patch.
- Issue #20145: `assertRaisesRegex` and `assertWarnsRegex` now raise a
- Issue #20145: `assertRaisesRegex` and `assertWarnsRegex` now raise a
TypeError if the second argument is not a string or compiled regex.
TypeError if the second argument is not a string or compiled regex.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment