from typetypo_ext import return_longlong, return_wstring print "Docstring say: ", return_longlong.__doc__ print "But actually type of return value is:", type(return_longlong()) print print "Docstring say: ", return_wstring.__doc__ print "But actually type of return value is:", type(return_wstring())