Issue 33359: curses.has_key failure - Python tracker (original) (raw)
This issue has been migrated to GitHub: https://github.com/python/cpython/issues/77540
classification
Title: | curses.has_key failure | ||
---|---|---|---|
Type: | behavior | Stage: | resolved |
Components: | Library (Lib) | Versions: | Python 2.7 |
process
Status: | closed | Resolution: | fixed |
---|---|---|---|
Dependencies: | Superseder: | ||
Assigned To: | Nosy List: | benjamin.peterson, serhiy.storchaka, uzume | |
Priority: | normal | Keywords: | easy, patch |
Created on 2018-04-25 18:13 by uzume, last changed 2022-04-11 14:58 by admin. This issue is now closed.
Pull Requests | |||
---|---|---|---|
URL | Status | Linked | Edit |
PR 6608 | merged | benjamin.peterson,2018-04-26 05:43 |
Messages (3) | ||
---|---|---|
msg315752 - (view) | Author: Uzume (uzume) | Date: 2018-04-25 18:13 |
The following change is broken and should be reverted (for the one file anyway): https://github.com/python/cpython/commit/6e3dbbdf39f3b4eb6f18c0165e446df17218b7dc#diff-c322497c7350a91fc1d78da0bb76b5b5 This does not seem to affect master but I did not check every Python version. This causes the following broken behavior (as found on Python 2.7): $ python -m curses.has_key yields the exception "TypeError: argument of type 'module' is not iterable" | ||
msg315753 - (view) | Author: Serhiy Storchaka (serhiy.storchaka) * ![]() |
Date: 2018-04-25 18:28 |
python -m curses.has_key | ||
msg315778 - (view) | Author: Benjamin Peterson (benjamin.peterson) * ![]() |
Date: 2018-04-26 05:57 |
New changeset 3219bbf6a159110d293dcfef2d5889ab020f4c5b by Benjamin Peterson in branch '2.7': fix running the curses.has_key module (closes bpo-33359) (GH-6608) https://github.com/python/cpython/commit/3219bbf6a159110d293dcfef2d5889ab020f4c5b |
History | |||
---|---|---|---|
Date | User | Action | Args |
2022-04-11 14:58:59 | admin | set | github: 77540 |
2018-04-26 05:57:37 | benjamin.peterson | set | status: open -> closedresolution: fixedmessages: + stage: patch review -> resolved |
2018-04-26 05:43:20 | benjamin.peterson | set | keywords: + patchpull_requests: + <pull%5Frequest6304> |
2018-04-25 18:28:25 | serhiy.storchaka | set | nosy: + serhiy.storchakamessages: + keywords: + easystage: patch review |
2018-04-25 18:13:44 | uzume | create |