Terminating a process breaks python curses
问题 Using python multiprocessing and curses, it appears that terminating a Process interferes with curses display. For example, in the following code, why does terminating the process stops curses from displaying the text ? (pressing b after pressing a) More precisely, it seems that not only the string "hello" is not displayed anymore but also the whole curses window. import curses from multiprocessing import Process from time import sleep def display(stdscr): stdscr.clear() curses.newwin(0,0)