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: Fix test_curses on NetBSD 8
Type: behavior Stage: resolved
Components: Tests Versions: Python 3.7, Python 3.6, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: serhiy.storchaka Nosy List: serhiy.storchaka, twouters
Priority: normal Keywords: patch

Created on 2017-11-02 14:01 by serhiy.storchaka, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 4228 merged serhiy.storchaka, 2017-11-02 14:02
PR 4259 merged python-dev, 2017-11-03 18:29
PR 4260 merged python-dev, 2017-11-03 18:30
Messages (4)
msg305424 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2017-11-02 14:01
The NetBSD curses library in NetBSD 8 provides the panel extension. compatible with ncurses. But a panel can not be created from stdscr. This causes failing two tests in test_curses. These tests were added not long time ago, and there are not reasons to create panels from stdscr instead of other windows. Hence the proposed PR just makes these two tests creating panels from new windows, as in other two tests.
msg305495 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2017-11-03 18:29
New changeset a7723d8b09f516a2b75837a3527b8cc7bee89fad by Serhiy Storchaka in branch 'master':
bpo-31924: Fix test_curses on NetBSD 8. (#4228)
https://github.com/python/cpython/commit/a7723d8b09f516a2b75837a3527b8cc7bee89fad
msg305503 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2017-11-03 20:11
New changeset 8ce98543ef959bb65da2fb57b0d442b3b6e8a087 by Serhiy Storchaka (Miss Islington (bot)) in branch '3.6':
bpo-31924: Fix test_curses on NetBSD 8. (GH-4228) (#4259)
https://github.com/python/cpython/commit/8ce98543ef959bb65da2fb57b0d442b3b6e8a087
msg305504 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2017-11-03 20:11
New changeset 6a9a331b34f39a3df1c3a91ffcac12a9608b1e57 by Serhiy Storchaka (Miss Islington (bot)) in branch '2.7':
bpo-31924: Fix test_curses on NetBSD 8. (GH-4228) (#4260)
https://github.com/python/cpython/commit/6a9a331b34f39a3df1c3a91ffcac12a9608b1e57
History
Date User Action Args
2022-04-11 14:58:53adminsetgithub: 76105
2017-11-03 20:12:27serhiy.storchakasetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2017-11-03 20:11:14serhiy.storchakasetmessages: + msg305504
2017-11-03 20:11:11serhiy.storchakasetmessages: + msg305503
2017-11-03 18:30:42python-devsetpull_requests: + pull_request4222
2017-11-03 18:29:44python-devsetpull_requests: + pull_request4221
2017-11-03 18:29:35serhiy.storchakasetmessages: + msg305495
2017-11-02 14:02:52serhiy.storchakasetkeywords: + patch
stage: patch review
pull_requests: + pull_request4198
2017-11-02 14:01:32serhiy.storchakacreate