summaryrefslogtreecommitdiff
path: root/Lib/test/tracedmodules
diff options
context:
space:
mode:
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-09-24 18:08:24 +0000
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-09-24 18:08:24 +0000
commit402392bd5afffedf38b0270a3122e4687bdd13a2 (patch)
tree7fbd9df30200dfeaa7f6343e970c6ded0dd534fb /Lib/test/tracedmodules
parenta4c8ecd32efe42895a21a1b0836c35559f8a6b23 (diff)
downloadcpython-git-402392bd5afffedf38b0270a3122e4687bdd13a2.tar.gz
Merged revisions 84994 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84994 | alexander.belopolsky | 2010-09-24 14:03:12 -0400 (Fri, 24 Sep 2010) | 1 line Issue #9936: Fixed executable lines' search in the trace module. ........
Diffstat (limited to 'Lib/test/tracedmodules')
-rw-r--r--Lib/test/tracedmodules/testmod.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/test/tracedmodules/testmod.py b/Lib/test/tracedmodules/testmod.py
index a4c25e4b3c..642776ea88 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)