summaryrefslogtreecommitdiff
path: root/lib/python2.7/test/tracedmodules/testmod.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python2.7/test/tracedmodules/testmod.py')
-rw-r--r--lib/python2.7/test/tracedmodules/testmod.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/python2.7/test/tracedmodules/testmod.py b/lib/python2.7/test/tracedmodules/testmod.py
new file mode 100644
index 0000000..642776e
--- /dev/null
+++ b/lib/python2.7/test/tracedmodules/testmod.py
@@ -0,0 +1,9 @@
+def func(x):
+ b = x + 1
+ return b + 2
+
+def func2():
+ """Test function for issue 9936 """
+ return (1,
+ 2,
+ 3)