From 8c6b0a5bcb2cfb0cd9e67bcfca4ee23297cd75f9 Mon Sep 17 00:00:00 2001 From: Vinay Sajip Date: Mon, 17 Aug 2009 13:17:47 +0000 Subject: [PATCH] Further refined section on logging to one file from multiple processes. --- Doc/library/logging.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst index 111969c233c..8092c0ef183 100644 --- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst @@ -1336,6 +1336,9 @@ If you are using a recent version of Python which includes the :class:`Lock` class from this module to serialize access to the file from your processes. The existing :class:`FileHandler` and subclasses do not make use of :mod:`multiprocessing` at present, though they may do so in the future. +Note that at present, the :mod:`multiprocessing` module does not provide +working lock functionality on all platforms (see +http://bugs.python.org/issue3770). .. _network-logging: