Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
inspections
/
PyAbstractClassInspection
/
abstract.py
blob: 17ceac0890232f945615a1a0eac1a02255191f5b [
file
] [
log
] [
blame
]
import
abc
class
A
(
object
):
__metaclass__
=
abc
.
ABCMeta
@abc
.
abstractproperty
def
foo
(
self
):
pass
class
<
weak_warning descr
=
"Class C must implement all abstract methods"
>
C
</
weak_warning
>(
A
):
def
bar
(
self
):
pass