summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2009-08-17 13:17:47 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2009-08-17 13:17:47 (GMT)
commit8c6b0a5bcb2cfb0cd9e67bcfca4ee23297cd75f9 (patch)
tree473bc0c70bf64574c848f546b0cf121aa231b47f /Doc
parentd8fe8bf67efa829215740665330c907f8ce9463d (diff)
downloadcpython-8c6b0a5bcb2cfb0cd9e67bcfca4ee23297cd75f9.zip
cpython-8c6b0a5bcb2cfb0cd9e67bcfca4ee23297cd75f9.tar.gz
cpython-8c6b0a5bcb2cfb0cd9e67bcfca4ee23297cd75f9.tar.bz2
Further refined section on logging to one file from multiple processes.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/logging.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst
index 111969c..8092c0e 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: