We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61165fb commit f101513Copy full SHA for f101513
graalpython/lib-python/3/test/test_generators.py
@@ -1869,12 +1869,12 @@ def printsolution(self, x):
1869
...
1870
SyntaxError: assignment to yield expression not possible
1871
1872
->>> def f(): (yield bar) = y
+>>> def f(): (yield bar) = y # doctest:+IGNORE_EXCEPTION_DETAIL
1873
Traceback (most recent call last):
1874
1875
SyntaxError: cannot assign to yield expression
1876
1877
->>> def f(): (yield bar) += y
+>>> def f(): (yield bar) += y # doctest:+IGNORE_EXCEPTION_DETAIL
1878
1879
1880
0 commit comments