-
-
Notifications
You must be signed in to change notification settings - Fork 32.1k
bpo-43659: check for curses.update_lines_cols() in Lib/test/test_curses.py #25074
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bpo-43659: check for curses.update_lines_cols() in Lib/test/test_curses.py #25074
Conversation
support for `curses.update_lines_cols()`. This patch permits the test_curses to skip a test that requires `curses.update_lines_cols()` support.
Thanks @aixtools for the PR, and @serhiy-storchaka for merging it 🌮🎉.. I'm working now to backport this PR to: 3.9. |
Thanks @aixtools for the PR, and @serhiy-storchaka for merging it 🌮🎉.. I'm working now to backport this PR to: 3.8. |
curses.update_lines_cols() is only defined when the curses library provides either resizeterm() or resize_term() functions which are optional and are not provided on AIX. (cherry picked from commit c8b5738) Co-authored-by: Michael Felt <aixtools@users.noreply.github.com>
GH-25076 is a backport of this pull request to the 3.9 branch. |
curses.update_lines_cols() is only defined when the curses library provides either resizeterm() or resize_term() functions which are optional and are not provided on AIX. (cherry picked from commit c8b5738) Co-authored-by: Michael Felt <aixtools@users.noreply.github.com>
GH-25077 is a backport of this pull request to the 3.8 branch. |
curses.update_lines_cols() is only defined when the curses library provides either resizeterm() or resize_term() functions which are optional and are not provided on AIX. (cherry picked from commit c8b5738) Co-authored-by: Michael Felt <aixtools@users.noreply.github.com>
curses.update_lines_cols() is only defined when the curses library provides either resizeterm() or resize_term() functions which are optional and are not provided on AIX. (cherry picked from commit c8b5738) Co-authored-by: Michael Felt <aixtools@users.noreply.github.com>
|
|
curses.update_lines_cols()
. This patch permits the test_cursesto skip a test that requires
curses.update_lines_cols()
support.https://bugs.python.org/issue43659