Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e1b6a9a

Browse files
committed
Added files missed in r84780. Thanks, Florent.
1 parent 98a5f3f commit e1b6a9a

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

Lib/test/tracedmodules/__init__.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
"""This package contains modules that help testing the trace.py module. Note
2+
that the exact location of functions in these modules is important, as trace.py
3+
takes the real line numbers into account.
4+
"""
5+
"""This directory contains modules that help testing the trace.py module. Note
6+
that the exact location of functions in these modules is important, as trace.py
7+
takes the real line numbers into account.
8+
9+
"""

Lib/test/tracedmodules/testmod.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
def func(x):
2+
b = x + 1
3+
return b + 2

0 commit comments

Comments
 (0)