Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
override
/
implement.py
blob: 5eb69477481f8aad57352631f6dcb8d2346d7bdf [
file
] [
log
] [
blame
]
from
abc
import
abstractmethod
class
A1
(
object
):
def
__init__
(
self
):
self
.
a
=
"Something"
@abstractmethod
def
my_method
(
self
):
print
self
.
a
class
B
(
A1
):
def
__iter__
(
self
):
pass