Python curses.initscr() bug? terminal doesn't show input and each new output is on same line -
i tried using curses w/ python 2.7.6 running os 10.9.2 curses.beep() function work. got beep terminal stopped showing me input (i'm not talking echo interactive python typing in @ moment - kind of entering password w/ sudo) when hit return new prompt on same line. i've tried w/ interactive python , using .py script.
importsucceed = true try: import curses except importerror: print "error" importsuc = false if importsucceed == true: print "trying init screen" stdscr = curses.initscr() print "trying beep" curses.beep()
i got output:
trying init screen #30ish lines of space trying beep prompt> # prompt started indented 2ish tabbed spaces
if continued entering commands terminal get
prompt> prompt> prompt> prompt>
with nothing input showing up.
any thoughts?
Comments
Post a Comment