関数のコードを返すにはどうすればよいですか? func_name メソッドは期待どおりに機能しますが、func_code は機能しません
>>> def testthis(): print 'test successful'
>>> testthis()
test successful
>>> testthis.func_name
'testthis'
>>> testthis.func_code
<code object testthis at 0124D728, file "<pyshell#281>", line 1>