Python 2.7.3 と PyScripter をインストールしました。この単純なコードを実行しようとすると、interupter は何も表示しません。
from ctypes import *
msvcrt = cdll.msvcrt
message_string = "Hello world!\n"
msvcrt.printf("Testing: %s".encode('ascii'), message_string.encode('ascii')
(エンコーディングなしでも試しました)