Commit f86b28e3 authored by Ezio Melotti's avatar Ezio Melotti

#14535: fix code highlight in multiprocessing examples. Patch by Tshepang Lekhonkhobe.

parent 650dfaf5
...@@ -1114,7 +1114,7 @@ The results printed are :: ...@@ -1114,7 +1114,7 @@ The results printed are ::
HELLO WORLD HELLO WORLD
[(3.515625, 39.0625), (33.0625, 4.0), (5.640625, 90.25)] [(3.515625, 39.0625), (33.0625, 4.0), (5.640625, 90.25)]
.. highlight:: python .. highlight:: python3
.. _multiprocessing-managers: .. _multiprocessing-managers:
...@@ -2256,16 +2256,19 @@ Examples ...@@ -2256,16 +2256,19 @@ Examples
Demonstration of how to create and use customized managers and proxies: Demonstration of how to create and use customized managers and proxies:
.. literalinclude:: ../includes/mp_newtype.py .. literalinclude:: ../includes/mp_newtype.py
:language: python3
Using :class:`Pool`: Using :class:`Pool`:
.. literalinclude:: ../includes/mp_pool.py .. literalinclude:: ../includes/mp_pool.py
:language: python3
Synchronization types like locks, conditions and queues: Synchronization types like locks, conditions and queues:
.. literalinclude:: ../includes/mp_synchronize.py .. literalinclude:: ../includes/mp_synchronize.py
:language: python3
An example showing how to use queues to feed tasks to a collection of worker An example showing how to use queues to feed tasks to a collection of worker
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment