This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Deprecated note in set documentation
Type: Stage: resolved
Components: Documentation Versions: Python 3.7, Python 3.6, Python 3.5, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Mariatta Nosy List: Mariatta, docs@python, mdk, rhettinger
Priority: normal Keywords:

Created on 2017-05-28 21:30 by mdk, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 1848 merged python-dev, 2017-05-28 21:35
PR 1905 merged Mariatta, 2017-06-01 14:05
PR 1906 merged Mariatta, 2017-06-01 14:05
PR 1907 merged Mariatta, 2017-06-01 14:05
Messages (7)
msg294662 - (view) Author: Julien Palard (mdk) * (Python committer) Date: 2017-05-28 21:30
While translating doc to french, I found a surprising comment in stdtypes.html about sets, stating:

> 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.

So I searched the equivalent in the code, at least to help me understand it to translate it in a proper way, but found it has been deleted in 51ced7afe72d861b46f069d757f2787f13253d32.

This commit is in branches 2.7 and 3.1 to 3.6 (and master).
msg294904 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2017-06-01 03:25
This is good to go.
msg294940 - (view) Author: Mariatta (Mariatta) * (Python committer) Date: 2017-06-01 14:02
New changeset 0737ee20671d60802a7ef40f653fe449f1921de0 by Mariatta (Julien) in branch 'master':
bpo-30499: Remove a deprecated note about sets. (GH-1848)
https://github.com/python/cpython/commit/0737ee20671d60802a7ef40f653fe449f1921de0
msg294941 - (view) Author: Mariatta (Mariatta) * (Python committer) Date: 2017-06-01 14:12
New changeset 9d752aa5e695d682f3cfc40655580900b132e52a by Mariatta in branch '3.6':
bpo-30499: Remove a deprecated note about sets. (GH-1848) (GH-1905)
https://github.com/python/cpython/commit/9d752aa5e695d682f3cfc40655580900b132e52a
msg294942 - (view) Author: Mariatta (Mariatta) * (Python committer) Date: 2017-06-01 14:12
New changeset 3419fc2bf1e81d42ef4578e59d3c10f9c239e80f by Mariatta in branch '3.5':
bpo-30499: Remove a deprecated note about sets. (GH-1848) (GH-1906)
https://github.com/python/cpython/commit/3419fc2bf1e81d42ef4578e59d3c10f9c239e80f
msg294943 - (view) Author: Mariatta (Mariatta) * (Python committer) Date: 2017-06-01 14:12
New changeset 662d856cd7d21dbdbd4043c1735d93b32568c9e5 by Mariatta in branch '2.7':
bpo-30499: Remove a deprecated note about sets. (GH-1848) (GH-1907)
https://github.com/python/cpython/commit/662d856cd7d21dbdbd4043c1735d93b32568c9e5
msg294944 - (view) Author: Mariatta (Mariatta) * (Python committer) Date: 2017-06-01 14:13
Thanks Julien and Raymond.
PR has been merged and backported to 2.7, 3.5 and 3.6.
History
Date User Action Args
2022-04-11 14:58:47adminsetgithub: 74684
2017-06-01 14:13:51Mariattasetstatus: open -> closed
resolution: fixed
messages: + msg294944

stage: patch review -> resolved
2017-06-01 14:12:57Mariattasetmessages: + msg294943
2017-06-01 14:12:45Mariattasetmessages: + msg294942
2017-06-01 14:12:35Mariattasetmessages: + msg294941
2017-06-01 14:05:22Mariattasetpull_requests: + pull_request1986
2017-06-01 14:05:15Mariattasetpull_requests: + pull_request1985
2017-06-01 14:05:06Mariattasetpull_requests: + pull_request1984
2017-06-01 14:02:39Mariattasetmessages: + msg294940
2017-06-01 03:25:58rhettingersetassignee: rhettinger -> Mariatta

messages: + msg294904
nosy: + Mariatta
2017-06-01 02:09:39Mariattasetstage: patch review
versions: + Python 3.7
2017-05-29 03:34:35rhettingersetassignee: docs@python -> rhettinger
2017-05-28 21:35:00python-devsetpull_requests: + pull_request1932
2017-05-28 21:30:17mdkcreate