Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
review comments
  • Loading branch information
eendebakpt committed Feb 26, 2026
commit c371bafcd55c03d4e8b397fd9f7b824f68026463
5 changes: 3 additions & 2 deletions Doc/c-api/dict.rst
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,10 @@ Dictionary objects
.. c:function:: PyObject* PyDict_Copy(PyObject *p)

Return a new dictionary that contains the same key-value pairs as *p*.
If *p* is a subclass of :class:`frozendict`, the result will be
a :class:`frozendict` instance.

.. versionchanged:: next
If *p* is a subclass of :class:`frozendict`, the result will be a
:class:`frozendict` instance instead of a :class:`dict` instance.

.. c:function:: int PyDict_SetItem(PyObject *p, PyObject *key, PyObject *val)

Expand Down
Loading