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