commit | e1b6a9ac99df104045a5297028ff8a614eb6353f | [log] [tgz] |
---|---|---|
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | Tue Sep 14 01:11:35 2010 +0000 |
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | Tue Sep 14 01:11:35 2010 +0000 |
tree | 9298449cfa4b439c0d8d9469f4e62cb762f24a43 | |
parent | 98a5f3f83883a6c924cfa1360647dcbf3152ea10 [diff] [blame] |
Added files missed in r84780. Thanks, Florent.
diff --git a/Lib/test/tracedmodules/testmod.py b/Lib/test/tracedmodules/testmod.py new file mode 100644 index 0000000..a4c25e4 --- /dev/null +++ b/Lib/test/tracedmodules/testmod.py
@@ -0,0 +1,3 @@ +def func(x): + b = x + 1 + return b + 2