I was really excited and right away got to programming. Unfortunately, I went to execute some code, and got this:
CODE
Traceback (most recent call last):
File "<stdin>", line 1, in ?
File "/home/joshua_school/curses.py", line 4, in ?
stdscr = curses.initscr()
AttributeError: 'module' object has no attribute 'initscr'
File "<stdin>", line 1, in ?
File "/home/joshua_school/curses.py", line 4, in ?
stdscr = curses.initscr()
AttributeError: 'module' object has no attribute 'initscr'
I did some searching around, and learned that the curses session wasn't properly closed. However, I couldn't find a solution.
I'd really like to spiff up my Python programs...anyone know how to get curses working again?
--Joshua