summaryrefslogtreecommitdiff
path: root/hdl/testing/delme.py
diff options
context:
space:
mode:
authorjjsuperpower <jjs29356@gmail.com>2022-06-24 11:40:10 -0500
committerjjsuperpower <jjs29356@gmail.com>2022-06-24 11:40:10 -0500
commitaf47ba80d5db24163feb378c52a20639e2532580 (patch)
tree9e6f18b23b11898c0c29c6e503a9a43cb3220475 /hdl/testing/delme.py
parent1fd5c82997bfb42e52ce7bff50450b65f8703cf1 (diff)
before myhdl_wraper
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