summaryrefslogtreecommitdiff
path: root/hdl/testing/delme.py
diff options
context:
space:
mode:
Diffstat (limited to 'hdl/testing/delme.py')
-rw-r--r--hdl/testing/delme.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/hdl/testing/delme.py b/hdl/testing/delme.py
new file mode 100644
index 0000000..1264357
--- /dev/null
+++ b/hdl/testing/delme.py
@@ -0,0 +1,11 @@
+class A():
+ def __init__(self):
+ print(f"Parent Class: {self.__class__}")
+
+class B(A):
+ def __init__(self):
+ super().__init__()
+ print(f"Child Class: {self.__class__}")
+
+
+b = B() \ No newline at end of file