| Alexander Belopolsky | e1b6a9a | 2010-09-14 01:11:35 +0000 | [diff] [blame] | 1 | def func(x): |
| 2 | b = x + 1 | ||||
| 3 | return b + 2 | ||||
| Alexander Belopolsky | ff09ce2 | 2010-09-24 18:03:12 +0000 | [diff] [blame] | 4 | |
| 5 | def func2(): | ||||
| 6 | """Test function for issue 9936 """ | ||||
| 7 | return (1, | ||||
| 8 | 2, | ||||
| 9 | 3) | ||||