Python Curses initscr Error

Estou tentando iniciar

screen = curses.initscr()

Mas falhou e retorna

File "C:\Python32\lib\curses\__init__.py", line 31, in initscr
fd=_sys.__stdout__.fileno())
AttributeError: 'NoneType' object has no attribute 'fileno'

Aqui está o meu sistema Python 3.2.3 (padrão, 11 de abril de 2012, 07:12:16) [MSC v.1500 64 bits (AMD64)] no win32

Esta é a primeira vez que executo python neste computador, é o Windows 7 64bit.

Isso tem algo a ver com o meu sistema operacional? De qualquer forma eu posso resolver isso?

questionAnswers(2)

yourAnswerToTheQuestion