Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
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