Skip to content

Commit 5e527aa

Browse files
address review
1 parent 94e92a5 commit 5e527aa

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Doc/c-api/set.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ the constructor functions work with any iterable Python object.
9292
.. note::
9393
9494
The operation is atomic in the :term:`free-threaded build`, if *iterable* is a set,
95-
frozenset or dict.
95+
frozenset, dict or frozendict.
9696
9797
9898
.. c:function:: PyObject* PyFrozenSet_New(PyObject *iterable)
@@ -105,7 +105,7 @@ the constructor functions work with any iterable Python object.
105105
.. note::
106106
107107
The operation is atomic in the :term:`free-threaded build`, if *iterable* is a set,
108-
frozenset or dict.
108+
frozenset, dict or frozendict.
109109
110110
111111
The following functions and macros are available for instances of :class:`set`

Doc/data/threadsafety.dat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ PyByteArray_AsString:compatible:
126126
PyByteArray_AS_STRING:compatible:
127127

128128
# Creation - may iterate the iterable argument, calling arbitrary code
129-
# atomic for sets, dicts, and frozendicts.
129+
# atomic for sets, frozensets, dicts, and frozendicts.
130130
PySet_New:shared:
131131
PyFrozenSet_New:shared:
132132

0 commit comments

Comments
 (0)