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

Popular posts from this blog

php - Magento - Deleted Base url key -

javascript - Tooltipster plugin not firing jquery function when button or any click even occur -

java - WrongTypeOfReturnValue exception thrown when unit testing using mockito -