ncurses - Trouble porting over python-2.7 curses to python-2.4 -


i wrote python code @ home 2.7, i'm trying fix run on 2.4 here @ work.

the first hline not work me. have

stdscr.hline(0,0,'=',5) 

but prints out 1 = sign.

second chgat not work in

screen.chgat(0,0,-1,curses.color_pair(2) 

as returns attributeerror: chgat

not sure how disable cursors since

curses.curs_set(0)` doesn't work either.`enter code here` 

i can't find documentation on curses python 2.4.3 i'm having trouble porting over.

the answer precise question "documentation on curses python 2.4.3" is:

http://docs.python.org/release/2.4.3/lib/module-curses.html


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -