Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
python
/
testData
/
inspections
/
PyAttributeOutsideInitInspection
/
baseClassAttrs.py
blob: 1bb6d5fe0676f0fd3a0c88ed973a0757cd55ab84 [
file
] [
log
] [
blame
]
Tor Norbye
3a2425a
2013-11-04 10:16:08 -0800
[
diff
] [
blame^
]
1
class
Base
(
object
):
2
class_field
=
1
3
4
5
class
Child
(
Base
):
6
def
f
(
self
):
7
self
.
class_field
=
3