Ticket #2909: typetypo.py
| File typetypo.py, 305 bytes (added by , 14 years ago) |
|---|
| Line | |
|---|---|
| 1 | from typetypo_ext import return_longlong, return_wstring |
| 2 | |
| 3 | print "Docstring say: ", return_longlong.__doc__ |
| 4 | print "But actually type of return value is:", type(return_longlong()) |
| 5 | |
| 6 | |
| 7 | |
| 8 | print "Docstring say: ", return_wstring.__doc__ |
| 9 | print "But actually type of return value is:", type(return_wstring()) |
| 10 |
