]> granicus.if.org Git - python/commitdiff
Remove recent from logging cookbook (GH-9636)
authorCheryl Sabella <cheryl.sabella@gmail.com>
Tue, 2 Oct 2018 16:35:05 +0000 (12:35 -0400)
committerRaymond Hettinger <rhettinger@users.noreply.github.com>
Tue, 2 Oct 2018 16:35:05 +0000 (09:35 -0700)
Doc/howto/logging-cookbook.rst

index 285aff7937c3d664eded297b529b08806eabe2d2..83c2d49c6d2a76261fc3d6fa318517c1915ac4d6 100644 (file)
@@ -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