summaryrefslogtreecommitdiff
path: root/test.py
diff options
context:
space:
mode:
authorMike Crute <mcrute@gmail.com>2009-12-20 20:39:46 -0500
committerMike Crute <mcrute@gmail.com>2009-12-20 20:39:46 -0500
commitaf2aec4837157eb45078896efa6a472aa96bb084 (patch)
treecb6d30e28cf268cb8828649e8cde56f040224cd5 /test.py
downloadcode_mining-master.tar.bz2
code_mining-master.tar.xz
code_mining-master.zip
Initial importHEADmaster
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"