I can't use █ character for curses border with.
Code example:
import curses
stdscr = curses.initscr()
c = '█'
stdscr.border(c, c, c, c, c, c, c, c)
stdscr.getch()
I obtain this error:
OverflowError: byte doesn't fit in chtype
I can however use addstr for write some utf-8 character like this:
stdscr.addstr(0, 0, "█")
Thanks for your help.