From 804af3d9b35688f44594ed29de48da7cd822af92 Mon Sep 17 00:00:00 2001 From: "vinay.sajip" Date: Sat, 1 Jul 2006 10:45:20 +0000 Subject: [PATCH] Added entry for fileConfig() bugfix. git-svn-id: http://svn.python.org/projects/python/trunk@47188 6015fed2-1504-0410-9fe1-9d1591cc4771 --- Misc/NEWS | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/Misc/NEWS b/Misc/NEWS index 28baa364dd..a8fe1b2451 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -39,6 +39,9 @@ Library - 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 @@ Core and builtins - 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 @@ Extension Modules 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 @@ Library - 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. -- 2.11.4.GIT