summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2008-01-24 12:43:33 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2008-01-24 12:43:33 (GMT)
commitd7cf32e66831a7ea8825befef3dc2ab8533ef1bc (patch)
tree20f963d6272167b7ad685b40a8025d7466e30574 /Misc
parentf38ba78d7d9432f108c71d1222769eddb94ab47f (diff)
downloadcpython-d7cf32e66831a7ea8825befef3dc2ab8533ef1bc.zip
cpython-d7cf32e66831a7ea8825befef3dc2ab8533ef1bc.tar.gz
cpython-d7cf32e66831a7ea8825befef3dc2ab8533ef1bc.tar.bz2
Updated for optional delay argument to FileHandler and subclasses.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS9
1 files changed, 8 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9c083e2..2ea75e6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,7 +12,7 @@ What's New in Python 2.6 alpha 1?
Core and builtins
-----------------
-- Issue #1069410: The "can't load dll" message box on Windows is
+- Issue #1069410: The "can't load dll" message box on Windows is
suppressed while an extension is loaded by calling SetErrorMode in
dynload_win.c. The error is still reported properly.
@@ -386,6 +386,10 @@ Core and builtins
Library
-------
+- #1765140: add an optional delay argument to FileHandler and its
+ subclasses. Defaults to false (existing behaviour), but if true,
+ defers opening the file until the first call to emit().
+
- The pprint module now supports sets and frozensets.
- #1221598: add optional callbacks to ftplib.FTP's storbinary() and
@@ -1318,6 +1322,9 @@ Tools
Documentation
-------------
+- RFE #1765140: Updated documentation on FileHandler and subclasses to
+ include new optional delay argument.
+
- Bug #932563: Added section on getting contextual information into logging
output, and added documentation for the new LoggerAdapter class.