Added updates with respect to recent changes to TimedRotatingFileHandler.

This commit is contained in:
Vinay Sajip 2008-04-02 21:10:23 +00:00
parent e5aefa0b30
commit b7edfc4e17
1 changed files with 17 additions and 8 deletions

View File

@ -88,6 +88,15 @@ Extensions Modules
Library
-------
- Issue #2315: logging.handlers: TimedRotatingFileHandler now accounts for
daylight savings time in calculating the next rollover.
- Issue #2316: logging.handlers: TimedRotatingFileHandler now calculates
rollovers correctly even when nothing is logged for a while.
- Issue #2317: logging.handlers: TimedRotatingFileHandler now uses improved
logic for removing old files.
- Issue #2495: tokenize.untokenize now inserts a space between two consecutive
string literals; previously, ["" ""] was rendered as [""""], which is
incorrect python code.