summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorHugo van Kemenade <hugovk@users.noreply.github.com>2023-04-22 21:41:58 (GMT)
committerGitHub <noreply@github.com>2023-04-22 21:41:58 (GMT)
commit8cb2b0f953288ff8749e686c268097cdd5a393e2 (patch)
tree48f659318a92e7783b00b392103dfe418f6c1ae5 /Doc/library
parentea2c0016502472aa8baa3149050ada776d17a009 (diff)
downloadcpython-8cb2b0f953288ff8749e686c268097cdd5a393e2.zip
cpython-8cb2b0f953288ff8749e686c268097cdd5a393e2.tar.gz
cpython-8cb2b0f953288ff8749e686c268097cdd5a393e2.tar.bz2
Revert "Avoid error lexing multiprocessing docs code block on Pygments 2.15.0" (#103616)
This reverts commit ace51dcdb781b0608b1273d246ebaee849561435.
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/multiprocessing.rst4
1 files changed, 1 insertions, 3 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst
index 84e309f..8454296 100644
--- a/Doc/library/multiprocessing.rst
+++ b/Doc/library/multiprocessing.rst
@@ -452,9 +452,7 @@ process which created it.
importable by the children. This is covered in :ref:`multiprocessing-programming`
however it is worth pointing out here. This means that some examples, such
as the :class:`multiprocessing.pool.Pool` examples will not work in the
- interactive interpreter. For example:
-
- .. code-block:: text
+ interactive interpreter. For example::
>>> from multiprocessing import Pool
>>> p = Pool(5)