[Python-checkins] r47188 - python/trunk/Misc/NEWS

vinay.sajip python-checkins at python.org
Sat Jul 1 12:45:21 CEST 2006


Author: vinay.sajip
Date: Sat Jul  1 12:45:20 2006
New Revision: 47188

Modified:
   python/trunk/Misc/NEWS
Log:
Added entry for fileConfig() bugfix.

Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Sat Jul  1 12:45:20 2006
@@ -39,6 +39,9 @@
 
 - The wsgiref package is now installed properly on Unix.
 
+- A bug was fixed in logging.config.fileConfig() which caused a crash on
+  shutdown when fileConfig() was called multiple times.
+
 Extension Modules
 -----------------
 
@@ -81,7 +84,7 @@
 - Fix the socket tests so they can be run concurrently.
 
 - Removed 5 integers from C frame objects (PyFrameObject).
-	f_nlocals, f_ncells, f_nfreevars, f_stack_size, f_restricted.
+  f_nlocals, f_ncells, f_nfreevars, f_stack_size, f_restricted.
 
 - Bug #532646: object.__call__() will continue looking for the __call__
   attribute on objects until one without one is found.  This leads to recursion
@@ -220,11 +223,11 @@
   Fixes SF python patch/bug #1408584.
 
 - bsddb: multithreaded DB access using the simple bsddb module interface
-  now works reliably.  It has been updated to use automatic BerkeleyDB 
+  now works reliably.  It has been updated to use automatic BerkeleyDB
   deadlock detection and the bsddb.dbutils.DeadlockWrap wrapper to retry
   database calls that would previously deadlock. [SF python bug #775414]
 
-- Patch #1446489: add support for the ZIP64 extensions to zipfile. 
+- Patch #1446489: add support for the ZIP64 extensions to zipfile.
 
 - Patch #1506645: add Python wrappers for the curses functions
   is_term_resized, resize_term and resizeterm.
@@ -237,7 +240,7 @@
 
 - Patch #812986: Update turtle output even if not tracing.
 
-- Patch #1494750: Destroy master after deleting children in 
+- Patch #1494750: Destroy master after deleting children in
   Tkinter.BaseWidget.
 
 - Patch #1096231: Add ``default`` argument to Tkinter.Wm.wm_iconbitmap.


More information about the Python-checkins mailing list