index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
logging
/
handlers.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Brought excluded code into the scope of a try block in SysLogHandler.emit().
Vinay Sajip
2014-11-01
1
-11/+11
*
Issue #22646: Accept list as well as tuple to support initialisation via dict...
Vinay Sajip
2014-10-17
1
-2/+2
*
Issue #21742: Set stream to None after closing.
Vinay Sajip
2014-06-14
1
-0/+1
*
Issue #21608: Updated HTTPHandler documentation.
Vinay Sajip
2014-05-30
1
-1/+1
*
Issue #18941: Respected delay when doing rollover.
Vinay Sajip
2013-09-06
1
-9/+4
*
Issue #18940: Handled low-volume logging when delay is True.
Vinay Sajip
2013-09-06
1
-2/+6
*
Issue #17981: Closed socket on error in SysLogHandler.
Vinay Sajip
2013-05-16
1
-0/+1
*
Issue #17795: Reverted backwards-incompatible change in SysLogHandler with Un...
Vinay Sajip
2013-04-22
1
-6/+29
*
Issue #16244: Remove file mode overrides.
Vinay Sajip
2012-10-16
1
-2/+0
*
Issue #16168: Use specified socket type for domain sockets in SysLogHandler.
Vinay Sajip
2012-10-09
1
-8/+2
*
Issue #15179: Closed socket on connection failure. Thanks to Kazutaka Morita ...
Vinay Sajip
2012-06-25
1
-1/+5
*
Issue #14632: Updated WatchedFileHandler to deal with race condition. Thanks ...
Vinay Sajip
2012-04-24
1
-19/+29
*
Issue #14452: remove BOM insertion code.
Vinay Sajip
2012-04-16
1
-2/+0
*
Closes #14436: Convert msg + args to string before pickling.
Vinay Sajip
2012-03-29
1
-2/+9
*
Closes #14314: backported fix.
Vinay Sajip
2012-03-23
1
-1/+2
*
Closes #14267: Corrected computation of rollover filename.
Vinay Sajip
2012-03-13
1
-6/+15
*
Fix added for recent changes in non-threading environments.
Vinay Sajip
2012-02-23
1
-5/+20
*
Updated comments.
Vinay Sajip
2012-02-23
1
-3/+2
*
logging: Added locking in flush() and close() handler methods. Thanks to Faya...
Vinay Sajip
2012-02-23
1
-13/+18
*
Issue #10949: Improved robustness of rotating file handlers.
Vinay Sajip
2011-01-21
1
-0/+2
*
Issue #7077: Backported fix from py3k.
Vinay Sajip
2010-09-03
1
-7/+6
*
Issue #9512: Made comment more informative.
Vinay Sajip
2010-08-22
1
-1/+6
*
Merged revisions 83901 via svnmerge from
Senthil Kumaran
2010-08-09
1
-1/+1
*
logging: Added LOG_FTP for SysLogHandler and updated documentation.
Vinay Sajip
2010-03-24
1
-1/+3
*
Issue #8117: logging: Improved algorithm for computing initial rollover time.
Vinay Sajip
2010-03-12
1
-2/+6
*
logging: Removed some more 1.5.2 support code.
Vinay Sajip
2010-02-07
1
-24/+3
*
logging: Improved support for SMTP over TLS.
Vinay Sajip
2009-12-06
1
-5/+8
*
logging: Added optional 'secure' parameter to SMTPHandler.
Vinay Sajip
2009-12-06
1
-2/+10
*
Issue #7077: logging: SysLogHandler now treats Unicode as per RFC 5424.
Vinay Sajip
2009-10-21
1
-0/+10
*
Issue #7086: Added TCP support to SysLogHandler and tidied up some anachronis...
Vinay Sajip
2009-10-10
1
-22/+27
*
Issue #5262: Improved fix.
Vinay Sajip
2009-06-11
1
-11/+11
*
Issue #5262: Fixed bug in next roll over time computation in TimedRotatingFil...
Vinay Sajip
2009-06-11
1
-5/+10
*
Issue 5013: Fixed bug in FileHandler when delay was set - added fix for Rotat...
Vinay Sajip
2009-01-20
1
-9/+9
*
Issue 4336: Let users of HTTPConnection.endheaders() submit a message body t...
Kristján Valur Jónsson
2009-01-09
1
-3/+1
*
Fixed: #2914 (RFE for UTC support in TimedRotatingFileHandler) and #2929 (wro...
Vinay Sajip
2008-05-20
1
-12/+20
*
Fix: #2315, #2316, #2317: TimedRotatingFileHandler - changed logic to better ...
Vinay Sajip
2008-04-02
1
-10/+62
*
Patch #2167 from calvin: Remove unused imports
Christian Heimes
2008-02-23
1
-1/+1
*
Added optional delay argument to FileHandler and subclasses.
Vinay Sajip
2008-01-24
1
-11/+14
*
Fix: #1836: Off-by-one bug in TimedRotatingFileHandler rollover calculation. ...
Vinay Sajip
2008-01-21
1
-2/+5
*
Bug #1321: Fixed logic error in TimedRotatingFileHandler.__init__()
Vinay Sajip
2007-10-24
1
-5/+5
*
Updated docstring for SysLogHandler (#1720726).
Vinay Sajip
2007-05-25
1
-1/+2
*
Added new optional credentials argument to SMTPHandler.__init__, and smtp.log...
Vinay Sajip
2007-05-01
1
-7/+12
*
Added optional timeout to SocketHandler.makeSocket (SF #1695948)
Vinay Sajip
2007-04-09
1
-1/+3
*
Use new email module names (#1637162, #1637159, #1637157).
Georg Brandl
2007-01-22
1
-1/+1
*
Updated rotating file handlers to use _open().
Vinay Sajip
2007-01-16
1
-10/+6
*
Added WatchedFileHandler (based on SF patch #1598415)
Vinay Sajip
2007-01-14
1
-0/+49
*
Bare except clause removed from SMTPHandler.emit(). Now, only ImportError is ...
Vinay Sajip
2007-01-08
1
-2/+2
*
Patch by Jeremy Katz (SF #1609407)
Vinay Sajip
2006-12-11
1
-2/+2
*
Addressed SF#1524081 by using a dictionary to map level names to syslog prior...
Vinay Sajip
2006-07-20
1
-3/+25
*
Removed buggy exception handling in doRollover of rotating file handlers. Exc...
Vinay Sajip
2006-06-27
1
-12/+2
[next]