Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
a3e39abd38575b02d52f05e041d797023938b6d6
/
.
/
python
/
testData
/
inspections
/
PyAbstractClassInspection
/
overriddenAsField.py
blob: 5d79ab73af50bb985f09bebe7765345c654a8da1 [
file
] [
log
] [
blame
]
Tor Norbye
a3e39ab
2014-04-10 10:54:17 -0700
[
diff
] [
blame^
]
1
import
abc
2
3
4
class
A
(
object
):
5
__metaclass__
=
abc
.
ABCMeta
6
7
@abc
.
abstractproperty
8
def
foo
(
self
):
9
pass
10
11
12
class
C
(
A
):
13
foo
=
'bar'