[Python-checkins] r74488 - python/trunk/Doc/library/logging.rst

vinay.sajip python-checkins at python.org
Mon Aug 17 15:14:37 CEST 2009


Author: vinay.sajip
Date: Mon Aug 17 15:14:37 2009
New Revision: 74488

Log:
Further refined section on logging to one file from multiple processes.

Modified:
   python/trunk/Doc/library/logging.rst

Modified: python/trunk/Doc/library/logging.rst
==============================================================================
--- python/trunk/Doc/library/logging.rst	(original)
+++ python/trunk/Doc/library/logging.rst	Mon Aug 17 15:14:37 2009
@@ -1359,6 +1359,9 @@
 :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:
 


More information about the Python-checkins mailing list