]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-30499: Remove a deprecated note about sets. (GH-1848)
authorJulien <github@mandark.fr>
Thu, 1 Jun 2017 14:02:21 +0000 (16:02 +0200)
committerMariatta <Mariatta@users.noreply.github.com>
Thu, 1 Jun 2017 14:02:21 +0000 (07:02 -0700)
Doc/library/stdtypes.rst

index 66a7d92a37c82e708af8a73ca74e0a37342fc9f8..492b82b9a49443258535c671fa3e1aff94aedf42 100644 (file)
@@ -3997,9 +3997,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*.
 
 
 .. _typesmapping: