diff options
author | Michael W. Hudson <mwh@python.net> | 2002-09-11 15:36:32 (GMT) |
---|---|---|
committer | Michael W. Hudson <mwh@python.net> | 2002-09-11 15:36:32 (GMT) |
commit | 02ff6a99522bf0c734831841661ebd385ae8c417 (patch) | |
tree | fdb0a6ffa6b397e39fe09f03bee05fa8a650eb0b /Lib | |
parent | 519a342d799a0222ca5290d152ee97d7818a9493 (diff) | |
download | cpython-02ff6a99522bf0c734831841661ebd385ae8c417.zip cpython-02ff6a99522bf0c734831841661ebd385ae8c417.tar.gz cpython-02ff6a99522bf0c734831841661ebd385ae8c417.tar.bz2 |
A slight change to SET_LINENO-less tracing.
This makes things a touch more like 2.2. Read the comments in
Python/ceval.c for more details.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_trace.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_trace.py b/Lib/test/test_trace.py index eca8c16..314801d 100644 --- a/Lib/test/test_trace.py +++ b/Lib/test/test_trace.py @@ -57,7 +57,7 @@ no_pop_tops.events = [(0, 'call'), (3, 'line'), (4, 'line'), (2, 'line'), - (6, 'return')] + (2, 'return')] def no_pop_blocks(): while 0: |