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 4d3cf40 commit c2793e9Copy full SHA for c2793e9
graalpython/com.oracle.graal.python.test/src/tests/test_imports.py
@@ -124,5 +124,6 @@ def func(x):
124
125
126
def test_recursive_import_from():
127
- import package.recpkg
128
- assert package.recpkg.context is package.recpkg.reduction.context
+ if sys.version_info.minor >= 6:
+ import package.recpkg
129
+ assert package.recpkg.context is package.recpkg.reduction.context
0 commit comments