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
323e4fb8
Commit
323e4fb8
authored
Feb 23, 2012
by
Vinay Sajip
Browse files
Options
Browse Files
Download
Plain Diff
Merged fix added for recent changes in non-threading environments.
parents
57c22379
f0509037
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
7 deletions
+28
-7
Lib/logging/__init__.py
Lib/logging/__init__.py
+8
-2
Lib/logging/handlers.py
Lib/logging/handlers.py
+20
-5
No files found.
Lib/logging/__init__.py
View file @
323e4fb8
...
...
@@ -914,9 +914,12 @@ class StreamHandler(Handler):
"""
Flushes the stream.
"""
with
self
.
lock
:
self
.
acquire
()
try
:
if
self
.
stream
and
hasattr
(
self
.
stream
,
"flush"
):
self
.
stream
.
flush
()
finally
:
self
.
release
()
def
emit
(
self
,
record
):
"""
...
...
@@ -965,13 +968,16 @@ class FileHandler(StreamHandler):
"""
Closes the stream.
"""
with
self
.
lock
:
self
.
acquire
()
try
:
if
self
.
stream
:
self
.
flush
()
if
hasattr
(
self
.
stream
,
"close"
):
self
.
stream
.
close
()
StreamHandler
.
close
(
self
)
self
.
stream
=
None
finally
:
self
.
release
()
def
_open
(
self
):
"""
...
...
Lib/logging/handlers.py
View file @
323e4fb8
...
...
@@ -593,11 +593,14 @@ class SocketHandler(logging.Handler):
"""
Closes the socket.
"""
with
self
.
lock
:
self
.
acquire
()
try
:
if
self
.
sock
:
self
.
sock
.
close
()
self
.
sock
=
None
logging
.
Handler
.
close
(
self
)
finally
:
self
.
release
()
class
DatagramHandler
(
SocketHandler
):
"""
...
...
@@ -792,9 +795,12 @@ class SysLogHandler(logging.Handler):
"""
Closes the socket.
"""
with
self
.
lock
:
self
.
acquire
()
try
:
self
.
socket
.
close
()
logging
.
Handler
.
close
(
self
)
finally
:
self
.
release
()
def
mapPriority
(
self
,
levelName
):
"""
...
...
@@ -1138,8 +1144,11 @@ class BufferingHandler(logging.Handler):
This version just zaps the buffer to empty.
"""
with
self
.
lock
:
self
.
acquire
()
try
:
self
.
buffer
=
[]
finally
:
self
.
release
()
def
close
(
self
):
"""
...
...
@@ -1189,20 +1198,26 @@ class MemoryHandler(BufferingHandler):
The record buffer is also cleared by this operation.
"""
with
self
.
lock
:
self
.
acquire
()
try
:
if
self
.
target
:
for
record
in
self
.
buffer
:
self
.
target
.
handle
(
record
)
self
.
buffer
=
[]
finally
:
self
.
release
()
def
close
(
self
):
"""
Flush, set the target to None and lose the buffer.
"""
self
.
flush
()
with
self
.
lock
:
self
.
acquire
()
try
:
self
.
target
=
None
BufferingHandler
.
close
(
self
)
finally
:
self
.
release
()
class
QueueHandler
(
logging
.
Handler
):
...
...
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