summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2014-01-04 23:55:01 (GMT)
committerR David Murray <rdmurray@bitdance.com>2014-01-04 23:55:01 (GMT)
commit9cf617bff9c018e43ab690cda451581aee390e3f (patch)
tree5c01664ac55d1f84c9aa0d33437c94b37dbe623d /Misc
parent4908f4a1512bd8f8625631f2c763cb04640c434a (diff)
downloadcpython-9cf617bff9c018e43ab690cda451581aee390e3f.zip
cpython-9cf617bff9c018e43ab690cda451581aee390e3f.tar.gz
cpython-9cf617bff9c018e43ab690cda451581aee390e3f.tar.bz2
whatsnew: logging TimedRotatingFileHandler atTime parameter.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 2 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 497cc56..aca2b5a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -2226,8 +2226,8 @@ Library
- Issue #16658: add missing return to HTTPConnection.send()
Patch by Jeff Knupp.
-- Issue #9556: Allowed specifying a time-of-day for a TimedRotatingFileHandler
- to rotate.
+- Issue #9556: the logging package now allows specifying a time-of-day for a
+ TimedRotatingFileHandler to rotate.
- Issue #14971: unittest test discovery no longer gets confused when a function
has a different __name__ than its name in the TestCase class dictionary.