Added files missed in r84780. Thanks, Florent.

This commit is contained in:
Alexander Belopolsky 2010-09-14 01:11:35 +00:00
parent 98a5f3f838
commit e1b6a9ac99
2 changed files with 12 additions and 0 deletions

View 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.
"""

View File

@ -0,0 +1,3 @@
def func(x):
b = x + 1
return b + 2