]> granicus.if.org Git - python/commitdiff
Added files missed in r84780. Thanks, Florent.
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>
Tue, 14 Sep 2010 01:11:35 +0000 (01:11 +0000)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>
Tue, 14 Sep 2010 01:11:35 +0000 (01:11 +0000)
Lib/test/tracedmodules/__init__.py [new file with mode: 0644]
Lib/test/tracedmodules/testmod.py [new file with mode: 0644]

diff --git a/Lib/test/tracedmodules/__init__.py b/Lib/test/tracedmodules/__init__.py
new file mode 100644 (file)
index 0000000..4628d8a
--- /dev/null
@@ -0,0 +1,9 @@
+"""This package contains modules that help testing the trace.py module. Note
+that the exact location of functions in these modules is important, as trace.py
+takes the real line numbers into account.
+"""
+"""This directory contains modules that help testing the trace.py module. Note
+that the exact location of functions in these modules is important, as trace.py
+takes the real line numbers into account.
+
+"""
diff --git a/Lib/test/tracedmodules/testmod.py b/Lib/test/tracedmodules/testmod.py
new file mode 100644 (file)
index 0000000..a4c25e4
--- /dev/null
@@ -0,0 +1,3 @@
+def func(x):
+    b = x + 1
+    return b + 2