mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Added files missed in r84780. Thanks, Florent.
This commit is contained in:
parent
98a5f3f838
commit
e1b6a9ac99
2 changed files with 12 additions and 0 deletions
9
Lib/test/tracedmodules/__init__.py
Normal file
9
Lib/test/tracedmodules/__init__.py
Normal file
|
@ -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.
|
||||
|
||||
"""
|
3
Lib/test/tracedmodules/testmod.py
Normal file
3
Lib/test/tracedmodules/testmod.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
def func(x):
|
||||
b = x + 1
|
||||
return b + 2
|
Loading…
Add table
Add a link
Reference in a new issue