powered by Fotopedia さて、 curses が入ったところで、早速使ってみようと思って下に目を通す Python で Curses プログラミング http://www.python.jp/doc/nightly/howto/curses.html そこに 「curses.wrapperを使っとくと何かと捗るよ」的な記述がある だけど具体的なサンプルがない 試しに何も考えずに関数を curses.wrapper に渡してみると、 「引数1個与えたいんだけど」的な感じでエラーになった [mitsuaki@localhost curses_test]$ cat cursestest.py # -*- coding: utf-8 -*- import curses def curses_main(): pass curses.wrapper(curses_main) [mit