diff options
author | Barry Warsaw <barry@python.org> | 2005-08-15 18:14:19 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2005-08-15 18:14:19 (GMT) |
commit | e2eca0b709451e6956d7c84658e9c29037be7c0c (patch) | |
tree | b83904c9a8949bd1349dc8cb1888a6a9471dd96f /Lib/test | |
parent | f09582eeda07aafba4f6169acec336927972d89b (diff) | |
download | cpython-e2eca0b709451e6956d7c84658e9c29037be7c0c.zip cpython-e2eca0b709451e6956d7c84658e9c29037be7c0c.tar.gz cpython-e2eca0b709451e6956d7c84658e9c29037be7c0c.tar.bz2 |
Port from the Python 2.4 branch, patches for SF bug # 900092,
hotshot.stats.load.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_trace.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_trace.py b/Lib/test/test_trace.py index f85c669..7f866fb 100644 --- a/Lib/test/test_trace.py +++ b/Lib/test/test_trace.py @@ -97,6 +97,7 @@ test_raise.events = [(0, 'call'), (-3, 'call'), (-2, 'line'), (-2, 'exception'), + (-2, 'return'), (2, 'exception'), (3, 'line'), (4, 'line'), |