diff options
author | Hugo van Kemenade <hugovk@users.noreply.github.com> | 2023-04-22 21:41:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-22 21:41:58 (GMT) |
commit | 8cb2b0f953288ff8749e686c268097cdd5a393e2 (patch) | |
tree | 48f659318a92e7783b00b392103dfe418f6c1ae5 /Doc/library | |
parent | ea2c0016502472aa8baa3149050ada776d17a009 (diff) | |
download | cpython-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.rst | 4 |
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) |