New submission from Andrea Griffini: I'm not a user of idle, but when asked about a strange behaviour of the logging module I digged a bit and found what I think is indeed a problem in the module itself. The problem is visible if the module is used from idle (or any other IDE that keeps the same python instance running for multiple execution of user code); if you call basicConfig(filename="foo.txt"), do some logging and call shutdown() the handler is closed (correctly closing the file) but remains attached to the root logger, and gets called again at next run (giving an error for invalid I/O on a closed file). This can also be reproduced in a single run with
import logging logging.basicConfig(filename="logtest.txt") logging.warning("This is a test") logging.shutdown() logging.basicConfig(filename="logtest2.txt") logging.warning("This is a test (2)") logging.shutdown() I think that it is not correct to close the handler but leave it in place, so I tried patching the module so that every handler keeps a list of all loggers it is attached to, and removes itself from loggers at close() time. This way the above code runs correctly (creating two files) and the logging module still passes the test suite. I must however admit that logging logic is a bit beyond my grasp (including a close() call commented out, some uses of lock/release I don't understand) so may be the attached patch is not correct even if passes the test. ---------- components: Library (Lib) files: logging.patch keywords: patch messages: 63179 nosy: ag6502 severity: normal status: open title: Problems using logging module with idle type: behavior versions: Python 2.4, Python 2.5, Python 2.6 Added file: http://bugs.python.org/file9583/logging.patch __________________________________ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue2216> __________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com