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.

Author pjfarleyiii
Recipients pjfarleyiii
Date 2021-04-03.19:34:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1617478451.24.0.000946150268907.issue43716@roundup.psfhosted.org>
In-reply-to
Content
curses.pair_number() result under Windows (console or Terminal window) value must be shifted by 16 bits to be valid to use as input to the curses.pair_content() function.

If the pair number result is not shifted, the call to curses.pair_content() fails with an overflow error:

Traceback (most recent call last):
  File "C:\Users\MyUser\test\curses-color.py", line 126, in <module>
    curses.wrapper(main)
  File "C:\Python38\lib\curses\__init__.py", line 105, in wrapper
    return func(stdscr, *args, **kwds)
  File "C:\Users\MyUser\test\curses-color.py", line 72, in main
    fg, bg = curses.pair_content (pair)
OverflowError: signed short integer is greater than maximum

The attached curses program demonstrates the correct functioning using the pair value shift under Windows.  Comment out the "if" and shift lines to reproduce the overflow error.

Environment information:

Windows 10 (latest updates)
Windows cmd.exe window or Windows Terminal Version: 1.6.10571.0
Python 3.8.7
windows-curses 2.2.0

Also tested in:

Ubuntu 20.04 (WSL2)
ncurses6/focal,now 6.2-0ubuntu2 amd64
History
Date User Action Args
2021-04-03 19:34:11pjfarleyiiisetrecipients: + pjfarleyiii
2021-04-03 19:34:11pjfarleyiiisetmessageid: <1617478451.24.0.000946150268907.issue43716@roundup.psfhosted.org>
2021-04-03 19:34:11pjfarleyiiilinkissue43716 messages
2021-04-03 19:34:10pjfarleyiiicreate