summaryrefslogtreecommitdiff
path: root/python/testData/mover/sameLevelAsDict_afterUp.py
blob: c4817e7a6474e0c5c0064e355b024f1739915997 (plain)
1
2
3
4
5
6
7
8
9
a = {
    'c': 99999
}
print "Hello, there."
print a['c']
a = {
    'b': 1,
    'c': 2
}