Mercurial > hg > orthanc-book
comparison Sphinx/source/plugins/python.rst @ 375:766fe39fdf35
typo
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 06 Apr 2020 09:25:24 +0200 |
parents | f5bbdabb04d9 |
children | ffe62e6c086f 16dc3561b41e |
comparison
equal
deleted
inserted
replaced
374:f5bbdabb04d9 | 375:766fe39fdf35 |
---|---|
578 the "master" Python interpreter if further calls to the Orthanc SDK | 578 the "master" Python interpreter if further calls to the Orthanc SDK |
579 are required. | 579 are required. |
580 | 580 |
581 Obviously, an in-depth discussion about the ``multiprocessing`` | 581 Obviously, an in-depth discussion about the ``multiprocessing`` |
582 library is out of the scope of this document. There are many | 582 library is out of the scope of this document. There are many |
583 references available on Internet. Also, note that ``multithreading`` | 583 references available on Internet. Also, note that ``threading`` is not |
584 is not useful here, as Python multithreading is also limited by the | 584 useful here, as Python multithreading is also limited by the GIL, and |
585 GIL, and is more targeted at dealing with costly I/O operations. | 585 is more targeted at dealing with costly I/O operations or with the |
586 :ref:`scheduling of commands <python-scheduler>`. |