次のパラメーター リストを持つ関数があります。
def print(*line, sep=' ', end='\n', file=sys.stdout, default = 'full'):
残念ながら、モジュールの pydoc ヘルプ テキストには次のように表示されます。
FUNCTIONS
print(*line, sep=' ', end='\n', file=<_io.TextIOWrapper name='<stdout>' mode='w' encoding='cp850'>, default='full')
file=sys.stdout
オブジェクトの詳細を表示するのではなく、ファイル引数をpydocに与えるにはどうすればよいですか?
ちなみにPython3.2です。