forked from python/cpython
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pythongh-103134: Update multiprocessing.managers.ListProxy and DictPr…
…oxy (pythonGH-103133)
- Loading branch information
1 parent
1db4695
commit bbb4988
Showing
3 changed files
with
60 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
Misc/NEWS.d/next/Library/2023-03-30-18-19-53.gh-issue-103134.bHrn91.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Add additional methods to :ref:`proxy objects <multiprocessing-proxy_objects>` | ||
in the :mod:`!multiprocessing` module: | ||
|
||
* :meth:`!clear` and :meth:`!copy` for proxies of :class:`list` | ||
* :meth:`~dict.fromkeys`, ``reversed(d)``, ``d | {}``, ``{} | d``, | ||
``d |= {'b': 2}`` for proxies of :class:`dict` |