summaryrefslogtreecommitdiff
path: root/tests/test_arcs.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2022-01-15 13:58:53 -0500
committerNed Batchelder <ned@nedbatchelder.com>2022-01-15 14:18:00 -0500
commit37ef7c7d8625ee7f364774110e3c467e82444d9b (patch)
tree4bd314b3bee2c8502437ef59edc51778433d8d4e /tests/test_arcs.py
parent7fec9566c74d46b95f6a741a59e66e136cc5b158 (diff)
downloadpython-coveragepy-git-37ef7c7d8625ee7f364774110e3c467e82444d9b.tar.gz
fix: proper tracing of call/return for Python 3.11.0a4
Version 3.11.0a4 introduced RESUME, so returns and calls are different now. This change also fixes some mishandling of yield-from in previous releases.
Diffstat (limited to 'tests/test_arcs.py')
-rw-r--r--tests/test_arcs.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/test_arcs.py b/tests/test_arcs.py
index 35c1ed3e..39187598 100644
--- a/tests/test_arcs.py
+++ b/tests/test_arcs.py
@@ -1288,7 +1288,6 @@ class YieldTest(CoverageTest):
list(gen([1,2,3]))
""",
arcz=".1 19 9. .2 23 34 45 56 63 37 7.",
- arcz_unpredicted="5.",
)
def test_abandoned_yield(self):
@@ -1866,7 +1865,6 @@ class AsyncTest(CoverageTest):
".1 13 38 8E EF FG G. " +
"-34 45 56 6-3 " +
"-89 9C C-8",
- arcz_unpredicted="5-3 9-8",
)
assert self.stdout() == "Compute 1 + 2 ...\n1 + 2 = 3\n"