Update of /cvsroot/python/python/dist/src/Lib/logging In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24268 Modified Files: __init__.py Log Message: Handler close() functions call flush() [SF #901330] Index: __init__.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/logging/__init__.py,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** __init__.py 20 Feb 2004 13:18:36 -0000 1.12 --- __init__.py 21 Feb 2004 22:12:32 -0000 1.13 *************** *** 1,3 **** ! # Copyright 2001-2002 by Vinay Sajip. All Rights Reserved. # # Permission to use, copy, modify, and distribute this software and its --- 1,3 ---- ! # Copyright 2001-2004 by Vinay Sajip. All Rights Reserved. # # Permission to use, copy, modify, and distribute this software and its *************** *** 37,42 **** __author__ = "Vinay Sajip <vinay_sajip@red-dove.com>" __status__ = "beta" ! __version__ = "0.4.9" ! __date__ = "20 February 2004" #--------------------------------------------------------------------------- --- 37,42 ---- __author__ = "Vinay Sajip <vinay_sajip@red-dove.com>" __status__ = "beta" ! __version__ = "0.4.9.1" ! __date__ = "21 February 2004" #--------------------------------------------------------------------------- *************** *** 713,716 **** --- 713,717 ---- Closes the stream. """ + self.flush() self.stream.close() StreamHandler.close(self)