Skip to content

Commit 6273cbd

Browse files
committed
Skip more doctests that need refcounting
1 parent 59b6ccd commit 6273cbd

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

graalpython/lib-python/3/test/test_generators.py

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2016,7 +2016,11 @@ def printsolution(self, x):
20162016
20172017
>>> g = f()
20182018
>>> next(g)
2019-
>>> del g
2019+
2020+
2021+
# XXX Truffle change skip test requiring refcounting/finalization
2022+
@support.impl_detail(graalvm=False)
2023+
>>> del g # doctest: +SKIP
20202024
exiting
20212025
20222026
@@ -2031,7 +2035,11 @@ def printsolution(self, x):
20312035
20322036
>>> g = f()
20332037
>>> next(g)
2034-
>>> del g
2038+
2039+
2040+
# XXX Truffle change skip test requiring refcounting/finalization
2041+
@support.impl_detail(graalvm=False)
2042+
>>> del g # doctest: +SKIP
20352043
finally
20362044
20372045

0 commit comments

Comments
 (0)