diff options
author | Cheryl Sabella <cheryl.sabella@gmail.com> | 2018-10-02 16:35:05 (GMT) |
---|---|---|
committer | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2018-10-02 16:35:05 (GMT) |
commit | 11c4eaa99362f91c7faea88e31df3e46af020023 (patch) | |
tree | 776f6a2389c24876ad402cbb178691d6137e61b2 /Doc/howto | |
parent | 81574b80e92554adf75c13fa42415beb8be383cb (diff) | |
download | cpython-11c4eaa99362f91c7faea88e31df3e46af020023.zip cpython-11c4eaa99362f91c7faea88e31df3e46af020023.tar.gz cpython-11c4eaa99362f91c7faea88e31df3e46af020023.tar.bz2 |
Remove recent from logging cookbook (GH-9636)
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/logging-cookbook.rst | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst index 285aff7..83c2d49 100644 --- a/Doc/howto/logging-cookbook.rst +++ b/Doc/howto/logging-cookbook.rst @@ -721,9 +721,8 @@ existing processes to perform this function.) includes a working socket receiver which can be used as a starting point for you to adapt in your own applications. -If you are using a recent version of Python which includes the -:mod:`multiprocessing` module, you could write your own handler which uses the -:class:`~multiprocessing.Lock` class from this module to serialize access to the +You could also write your own handler which uses the :class:`~multiprocessing.Lock` +class from the :mod:`multiprocessing` 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 |