mirror of
https://github.com/python/cpython.git
synced 2025-01-26 11:04:21 +08:00
Added files missed in r84780. Thanks, Florent.
This commit is contained in:
parent
98a5f3f838
commit
e1b6a9ac99
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…
Reference in New Issue
Block a user