summaryrefslogtreecommitdiff
path: root/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'test.py')
-rw-r--r--test.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/test.py b/test.py
new file mode 100644
index 0000000..a5d1dc3
--- /dev/null
+++ b/test.py
@@ -0,0 +1,20 @@
1class Test(object):
2 pass
3
4CONSTANT = "this"
5variable = "that"
6
7def my_function():
8 pass
9
10this, that, the_other = "test"
11my = junk = "test"
12
13del my
14del this, that
15
16(more, stuff) = (other, stuff)
17
18__private = "this is private"
19_protected = "this is protected"
20__magic__ = "this is magic"