[issue46000] NetBSD curses compatibility

2021-12-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you Thomas for your contribution. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.11, Python 3.9 ___ Python tracker _

[issue46000] NetBSD curses compatibility

2021-12-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 040f9f9c48f4e74e851d850275aa9e050a04d0c6 by Miss Islington (bot) in branch '3.9': bpo-46000: Improve NetBSD curses compatibility (GH-29947) (GH-30023) https://github.com/python/cpython/commit/040f9f9c48f4e74e851d850275aa9e050a04d0c6

[issue46000] NetBSD curses compatibility

2021-12-10 Thread miss-islington
miss-islington added the comment: New changeset bb76410824e526ee075eac22812a577cca7583cf by Miss Islington (bot) in branch '3.10': bpo-46000: Improve NetBSD curses compatibility (GH-29947) https://github.com/python/cpython/commit/bb76410824e526ee075eac22812a577cca7583cf --

[issue46000] NetBSD curses compatibility

2021-12-10 Thread miss-islington
Change by miss-islington : -- pull_requests: +28247 pull_request: https://github.com/python/cpython/pull/30023 ___ Python tracker ___ __

[issue46000] NetBSD curses compatibility

2021-12-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 2fb797e93c6bbd44dfcbe23f63acfa240a87e48a by Thomas Klausner in branch 'main': bpo-46000: Improve NetBSD curses compatibility (GH-29947) https://github.com/python/cpython/commit/2fb797e93c6bbd44dfcbe23f63acfa240a87e48a -- ___

[issue46000] NetBSD curses compatibility

2021-12-10 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +28246 pull_request: https://github.com/python/cpython/pull/30022 ___ Python tracker _

[issue46000] NetBSD curses compatibility

2021-12-07 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue46000] NetBSD curses compatibility

2021-12-06 Thread Thomas Klausner
Thomas Klausner added the comment: Done: https://github.com/python/cpython/pull/29947 -- ___ Python tracker ___ ___ Python-bugs-lis

[issue46000] NetBSD curses compatibility

2021-12-06 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch nosy: +python-dev nosy_count: 2.0 -> 3.0 pull_requests: +28172 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29947 ___ Python tracker _

[issue46000] NetBSD curses compatibility

2021-12-06 Thread Christian Heimes
Christian Heimes added the comment: Could you please open a pull request on GitHub? A PR will run our CI and our bots will verify that your changeset follows our guidelines. -- nosy: +christian.heimes ___ Python tracker

[issue46000] NetBSD curses compatibility

2021-12-06 Thread Thomas Klausner
New submission from Thomas Klausner : The code in Modules/_cursesmodule.c has an assumption on ncurses. The attached simple patch fixes this and works with both NetBSD curses and ncurses. -- components: Extension Modules files: patch-Modules___cursesmodule.c messages: 407825 nosy: wiz