Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
override
/
implement_after.py
blob: e762f1252bdd8710cc12f55dad567cefbd8c5bbd [
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
my_method
(
self
):
<
selection
>
pass
</
selection
>
def
__iter__
(
self
):
pass