mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-26 19:06:24 +07:00
Don't resolve forward outgoing references in class except cython and pyi (PY-26368)
This commit is contained in:
+22
@@ -0,0 +1,22 @@
|
||||
class A1:
|
||||
foo = <error descr="Unresolved reference 'B1'">B1</error>()
|
||||
|
||||
class B1:
|
||||
pass
|
||||
|
||||
|
||||
class A21:
|
||||
class A22:
|
||||
bar = <error descr="Unresolved reference 'B2'">B2</error>()
|
||||
|
||||
class B2:
|
||||
pass
|
||||
|
||||
|
||||
class A31:
|
||||
def baz(self):
|
||||
class A32:
|
||||
egg = B3()
|
||||
|
||||
class B3:
|
||||
pass
|
||||
Reference in New Issue
Block a user