Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
python
/
testData
/
inspections
/
PyUnboundLocalVariableInspection
/
InstanceAttributeOutsideClass.py
blob: 5fc2a210625adea26115a1dc6191f2c196753f71 [
file
] [
log
] [
blame
]
class
C
(
object
):
pass
class
D
(
object
):
def
f
(
self
):
def
g
(
x
):
x
=
C
()
x
.
y
=
1
#pass
return
x
return
g