diff options
author | Mariatta <Mariatta@users.noreply.github.com> | 2017-06-01 14:12:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-01 14:12:01 (GMT) |
commit | 9d752aa5e695d682f3cfc40655580900b132e52a (patch) | |
tree | 12c939fb7b5991f3294d4fe14e3b42ae8d87f1cf /Doc/library | |
parent | 9522159bc41f2be0f4aafd0fa182669876aca47f (diff) | |
download | cpython-9d752aa5e695d682f3cfc40655580900b132e52a.zip cpython-9d752aa5e695d682f3cfc40655580900b132e52a.tar.gz cpython-9d752aa5e695d682f3cfc40655580900b132e52a.tar.bz2 |
bpo-30499: Remove a deprecated note about sets. (GH-1848) (GH-1905)
(cherry picked from commit 0737ee20671d60802a7ef40f653fe449f1921de0)
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/stdtypes.rst | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 4272b96..81146f4 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -3982,9 +3982,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: |