You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The other high-level interface, the :class:`Manager` class, creates a
649
+
The other high-level interface, the :class:`~multiprocessing.Manager` class, creates a
650
650
separate server process that can hold master copies of Python data
651
651
structures. Other processes can then access and modify these data
652
652
structures using proxy objects. The following example creates a
653
653
shared dictionary by calling the :meth:`dict` method; the worker
654
654
processes then insert values into the dictionary. (Locking is not
655
655
done for you automatically, which doesn't matter in this example.
656
-
:class:`Manager`'s methods also include :meth:`Lock`, :meth:`RLock`,
657
-
and :meth:`Semaphore` to create shared locks.)
656
+
:class:`~multiprocessing.Manager`'s methods also include :meth:`~multiprocessing.managers.SyncManager.Lock`, :meth:`~multiprocessing.managers.SyncManager.RLock`,
657
+
and :meth:`~multiprocessing.managers.SyncManager.Semaphore` to create shared locks.)
0 commit comments