summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2004-07-15 11:44:42 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2004-07-15 11:44:42 (GMT)
commit23406894ea48813daa004ba075c32b1125940165 (patch)
tree9e204406375b1c0396f88200b5ef670813c550b2 /Doc/whatsnew
parentde8332171a2112d827e5bb58d7b40f9bb3e77b60 (diff)
downloadcpython-23406894ea48813daa004ba075c32b1125940165.zip
cpython-23406894ea48813daa004ba075c32b1125940165.tar.gz
cpython-23406894ea48813daa004ba075c32b1125940165.tar.bz2
Correct a paragraph: basicConfig() isn't actually new
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/whatsnew24.tex12
1 files changed, 6 insertions, 6 deletions
diff --git a/Doc/whatsnew/whatsnew24.tex b/Doc/whatsnew/whatsnew24.tex
index 2a5d89e..6b2d0f8 100644
--- a/Doc/whatsnew/whatsnew24.tex
+++ b/Doc/whatsnew/whatsnew24.tex
@@ -1,3 +1,4 @@
+
\documentclass{howto}
\usepackage{distutils}
% $Id$
@@ -785,12 +786,11 @@ If the separation is large, then you might as well use
another, \function{tee()} is ideal. Possible applications include
bookmarking, windowing, or lookahead iterators.
-\item A \function{basicConfig} function was added to the
-\module{logging} package to simplify log configuration. It defaults
-to logging to standard error, but a
-number of optional keyword arguments can be specified to
-log to a particular file, change the logging format, or set the
-logging level. For example:
+\item The \module{logging} package's \function{basicConfig} function
+gained some keyword arguments to simplify log configuration. The
+default behavior is to log messages to standard error, but
+various keyword arguments can be specified to log to a particular file,
+change the logging format, or set the logging level. For example:
\begin{verbatim}
import logging