[issue43084] curses.window.enclose() should return bool

2021-04-05 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue43084] curses.window.enclose() should return bool

2021-04-05 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: 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

[issue43084] curses.window.enclose() should return bool

2021-01-31 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +23212 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24398 ___ Python tracker

[issue43084] curses.window.enclose() should return bool

2021-01-31 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : 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 -- components: Extension Modules messages: 386021 nosy: serhiy.storchaka priority: