commit | ff09ce211f8390bbcbb9d9bb2863ca97f63864c5 | [log] [tgz] |
---|---|---|
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | Fri Sep 24 18:03:12 2010 +0000 |
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | Fri Sep 24 18:03:12 2010 +0000 |
tree | 483eb1c1722e5f63b31bfe1dc6784027dff0165c | |
parent | 5e83da3d0867c36b3cf5d63b1c72ae0615652f99 [diff] [blame] |
Issue #9936: Fixed executable lines' search in the trace module.
diff --git a/Lib/test/tracedmodules/testmod.py b/Lib/test/tracedmodules/testmod.py index a4c25e4..642776e 100644 --- a/Lib/test/tracedmodules/testmod.py +++ b/Lib/test/tracedmodules/testmod.py
@@ -1,3 +1,9 @@ def func(x): b = x + 1 return b + 2 + +def func2(): + """Test function for issue 9936 """ + return (1, + 2, + 3)