From af47ba80d5db24163feb378c52a20639e2532580 Mon Sep 17 00:00:00 2001 From: jjsuperpower Date: Fri, 24 Jun 2022 11:40:10 -0500 Subject: before myhdl_wraper --- hdl/testing/delme.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 hdl/testing/delme.py (limited to 'hdl/testing/delme.py') 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 -- cgit v1.2.3