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
2 changes: 2 additions & 0 deletions Doc/c-api/dict.rst
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ 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.


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