Issue #9936: Fixed executable lines' search in the trace module.

This commit is contained in:
Alexander Belopolsky 2010-09-24 18:03:12 +00:00
parent 5e83da3d08
commit ff09ce211f
4 changed files with 32 additions and 11 deletions

View file

@ -1,3 +1,9 @@
def func(x):
b = x + 1
return b + 2
def func2():
"""Test function for issue 9936 """
return (1,
2,
3)