8000 Doc: Avoid error lexing multiprocessing docs code block on Pygments 2.15.0 by CAM-Gerlach · Pull Request #103421 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

Doc: Avoid error lexing multiprocessing docs code block on Pygments 2.15.0 #103421

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Avoid error lexing multiprocessing docs code block on Pygments 2.15.0
  • Loading branch information
CAM-Gerlach committed Apr 10, 2023
commit ace51dcdb781b0608b1273d246ebaee849561435
4 changes: 3 additions & 1 deletion Doc/library/multiprocessing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,9 @@ 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::
interactive interpreter. For example:

.. code-block:: text

>>> from multiprocessing import Pool
>>> p = Pool(5)
Expand Down
0