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: Convert membership test from dict-of-constants to a set
Type: Stage: resolved
Components: Library (Lib) Versions: Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: cheryl.sabella Nosy List: cheryl.sabella, rhettinger
Priority: normal Keywords: easy, patch

Created on 2018-12-23 01:24 by rhettinger, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 11296 merged cheryl.sabella, 2018-12-23 14:06
Messages (2)
msg332380 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2018-12-23 01:24
On line 164 in Lib/wsgiref/utils.py, there is a dictionary called *_hoppish* that should be a set object.
msg332465 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2018-12-24 15:30
New changeset 68151553845199136794bd60dcec238d8bfe0bdb by Raymond Hettinger (Cheryl Sabella) in branch 'master':
bpo-35567: Convert dict of constants to a set (GH-11296)
https://github.com/python/cpython/commit/68151553845199136794bd60dcec238d8bfe0bdb
History
Date User Action Args
2022-04-11 14:59:09adminsetgithub: 79748
2018-12-24 15:30:55rhettingersetmessages: + msg332465
2018-12-23 16:43:10rhettingersetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2018-12-23 14:06:47cheryl.sabellasetkeywords: + patch
stage: patch review
pull_requests: + pull_request10526
2018-12-23 01:24:22rhettingercreate