summaryrefslogtreecommitdiff
path: root/test.py
blob: a5d1dc32f555c10b80d82af2bc7b31955866d817 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
class Test(object):
    pass

CONSTANT = "this"
variable = "that"

def my_function():
    pass

this, that, the_other = "test"
my = junk = "test"

del my
del this, that

(more, stuff) = (other, stuff)

__private = "this is private"
_protected = "this is protected"
__magic__ = "this is magic"