Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
inspections
/
AddGlobalExistingStatement_after.py
blob: 23aedf9f1ba95c98453e6484cdfecdafa09b9c6c [
file
] [
log
] [
blame
]
Tor Norbye
3a2425a5
2013-11-04 10:16:08 -0800
[
diff
] [
blame
]
1
a
=
1
2
3
def
foo
():
4
global
b
,
a
5
print
a
6
a
=
2
7
print
a
8
9
foo
()