Ticket #2909: typetypo.py

File typetypo.py, 305 bytes (added by Haoyu Bai, 14 years ago)

Testcase showing the problem.

Line 
1from typetypo_ext import return_longlong, return_wstring
2
3print "Docstring say: ", return_longlong.__doc__
4print "But actually type of return value is:", type(return_longlong())
5
6print
7
8print "Docstring say: ", return_wstring.__doc__
9print "But actually type of return value is:", type(return_wstring())
10