summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2008-12-03 23:22:58 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2008-12-03 23:22:58 (GMT)
commit213faca204ffcd48c465beac2351c65a15187e8c (patch)
tree411c48c94ef6d8e0311c18201c28ec8ea556f2f1 /Misc
parent7989a4dccb39aa954057cbc4205473f09daae84b (diff)
downloadcpython-213faca204ffcd48c465beac2351c65a15187e8c.zip
cpython-213faca204ffcd48c465beac2351c65a15187e8c.tar.gz
cpython-213faca204ffcd48c465beac2351c65a15187e8c.tar.bz2
Issue #4384: Added logging integration with warnings module using captureWarnings(). This change includes a NullHandler which does nothing; it will be of use to library developers who want to avoid the "No handlers could be found for logger XXX" message which can appear if the library user doesn't configure logging.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS8
1 files changed, 7 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 025ca4c..78578e3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -22,7 +22,7 @@ Core and Builtins
- Issue #4367: Python would segfault during compiling when the unicodedata
module couldn't be imported and \N escapes were present.
-- Issue #4233: Changed semantic of ``_fileio.FileIO``'s ``close()``
+- Issue #4233: Changed semantic of ``_fileio.FileIO``'s ``close()``
method on file objects with closefd=False. The file descriptor is still
kept open but the file object behaves like a closed file. The ``FileIO``
object also got a new readonly attribute ``closefd``.
@@ -60,6 +60,12 @@ Core and Builtins
Library
-------
+- Issue #4384: Added integration with warnings module using captureWarnings().
+ This change includes a NullHandler which does nothing; it will be of use to
+ library developers who want to avoid the "No handlers could be found for
+ logger XXX" message which can appear if the library user doesn't configure
+ logging.
+
- Issue #3741: DISTUTILS_USE_SDK set causes msvc9compiler.py to raise an
exception.