]> granicus.if.org Git - python/commitdiff
bpo-30499: Remove a deprecated note about sets. (GH-1848) (GH-1907)
authorMariatta <Mariatta@users.noreply.github.com>
Thu, 1 Jun 2017 14:12:18 +0000 (07:12 -0700)
committerGitHub <noreply@github.com>
Thu, 1 Jun 2017 14:12:18 +0000 (07:12 -0700)
(cherry picked from commit 0737ee20671d60802a7ef40f653fe449f1921de0)

Doc/library/stdtypes.rst

index f0ecd96d939de3bb3b9542f806d3a691c25ea7fb..4e605eba59ff526de0f5c9dba5f56a631595c03a 100644 (file)
@@ -2004,9 +2004,7 @@ The constructors for both classes work the same:
 
    Note, the *elem* argument to the :meth:`__contains__`, :meth:`remove`, and
    :meth:`discard` methods may be a set.  To support searching for an equivalent
-   frozenset, the *elem* set is temporarily mutated during the search and then
-   restored.  During the search, the *elem* set should not be read or mutated
-   since it does not have a meaningful value.
+   frozenset, a temporary one is created from *elem*.
 
 
 .. seealso::