mirror of
https://github.com/neogeek23/drawshare.git
synced 2026-02-04 19:18:21 +00:00
13 lines
158 B
Python
13 lines
158 B
Python
|
|
class A:
|
|
def a(self):
|
|
return 'b'
|
|
|
|
class B(A, object):
|
|
def b(self):
|
|
return 'c'
|
|
|
|
class Inherit(A):
|
|
def a(self):
|
|
return 'd'
|