summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2009-08-17 13:14:37 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2009-08-17 13:14:37 (GMT)
commit5e7f645c16fde1b34e108b6b16bf0e2d65dd282c (patch)
tree3099f53596f788da77c24f6dfab88d666bfa0b98 /Doc/library
parent99954c9c45ffd192f7c9cf96998e830e07020b28 (diff)
downloadcpython-5e7f645c16fde1b34e108b6b16bf0e2d65dd282c.zip
cpython-5e7f645c16fde1b34e108b6b16bf0e2d65dd282c.tar.gz
cpython-5e7f645c16fde1b34e108b6b16bf0e2d65dd282c.tar.bz2
Further refined section on logging to one file from multiple processes.
Diffstat (limited to 'Doc/library')
-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 53ba9a9..d458bfe 100644
--- a/Doc/library/logging.rst
+++ b/Doc/library/logging.rst
@@ -1359,6 +1359,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: