Why is this piece of python code not producing a normal black
background color?
import curses
def func(stdscr):
c = stdscr.getkey()
curses.wrapper(func)
I really don't get it. I played around with many things (color_pair
, pair_number
, init_pair
, etc). This is really not black.
I'm using the default ubuntu gnome-terminal. (But afaik it doesn't make a difference).