bpo-43231: Fix test.test_curses.TestCurses.test_init_pair when running under -R (GH-24539)

This commit is contained in:
Pablo Galindo 2021-02-15 21:35:48 +00:00 committed by GitHub
parent a2f0654b0a
commit ab2d481639
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -926,6 +926,13 @@ class TestCurses(unittest.TestCase):
if (not curses.has_extended_color_support()
or (6, 1) <= curses.ncurses_version < (6, 2)):
pair_limit = min(pair_limit, SHORT_MAX)
# If use_default_colors() is called, the upper limit of the extended
# range may be restricted, so we need to check if the limit is still
# correct
try:
curses.init_pair(pair_limit, 0, 0)
except ValueError:
pair_limit = curses.COLOR_PAIRS
return pair_limit
@requires_colors