summaryrefslogtreecommitdiff
path: root/basics/python/circular/a.py
diff options
context:
space:
mode:
Diffstat (limited to 'basics/python/circular/a.py')
-rw-r--r--basics/python/circular/a.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/basics/python/circular/a.py b/basics/python/circular/a.py
new file mode 100644
index 0000000..b32c70d
--- /dev/null
+++ b/basics/python/circular/a.py
@@ -0,0 +1,13 @@
+
+
+from typing import TYPE_CHECKING
+if TYPE_CHECKING:
+ from b import B
+
+
+class A:
+ def foo(self, b: 'B'):
+ return 2*b.foo()
+
+ def t(self):
+ print('A.t()')