1

我在家里为 2.7 编写了我的 python 代码,但现在我正在尝试修复它以在工作时在 2.4 上运行。

首先是 hline 对我不起作用。我有

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

但它只打印出一个=标志。

其次是 chgat 不起作用

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

当它返回时AttributeError: chgat

不知道如何禁用游标,因为

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

我找不到关于 python 2.4.3 的诅咒的任何文档,所以我在移植它时遇到了麻烦。

4

1 回答 1

0

您的确切问题“python 2.4.3 的诅咒文档”的答案是:

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

于 2013-05-13T21:24:05.663 回答