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 d69eedb commit cb20eafCopy full SHA for cb20eaf
test-data/unit/check-modules.test
@@ -2091,6 +2091,14 @@ reveal_type(A().g) # E: Revealed type is 'def (x: builtins.list[builtins.int])'
2091
from typing import List
2092
[builtins fixtures/list.pyi]
2093
2094
+[case testStarImportWithinCycle]
2095
+import a
2096
+[file a.py]
2097
+from b import f
2098
+[file b.py]
2099
+from a import *
2100
+def f() -> None: pass
2101
+
2102
[case testIndirectStarImportWithinCycle1]
2103
import a
2104
[file a.py]
0 commit comments