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: curses.window.enclose() should return bool
Type: enhancement Stage: resolved
Components: Extension Modules Versions: Python 3.10
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: serhiy.storchaka
Priority: normal Keywords: patch

Created on 2021-01-31 14:44 by serhiy.storchaka, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 24398 merged serhiy.storchaka, 2021-01-31 15:33
Messages (2)
msg386021 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2021-01-31 14:44
curses.window.enclose() is the only curses wrapper which returns 0/1 while the original function is declared returning bool. https://linux.die.net/man/3/wenclose
msg390235 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2021-04-05 13:50
New changeset b1dc1aacf8b0f319024a1a3ce91d395956537c11 by Serhiy Storchaka in branch 'master':
bpo-43084: Return bool instead of int from curses.window.enclose() (GH-24398)
https://github.com/python/cpython/commit/b1dc1aacf8b0f319024a1a3ce91d395956537c11
History
Date User Action Args
2022-04-11 14:59:40adminsetgithub: 87250
2021-04-05 13:50:54serhiy.storchakasetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2021-04-05 13:50:31serhiy.storchakasetmessages: + msg390235
2021-01-31 15:33:46serhiy.storchakasetkeywords: + patch
stage: patch review
pull_requests: + pull_request23212
2021-01-31 14:44:59serhiy.storchakacreate