summer update

This commit is contained in:
bendtherules
2014-07-07 18:18:56 -07:00
parent d1f4cc61cc
commit 0cf8b29572
58 changed files with 9282 additions and 766 deletions
+14
View File
@@ -0,0 +1,14 @@
class A(object):
"""docstring for A"""
a = 2
pass
class B(object):
"""docstring for A"""
pass
b = A.a
print("Run completed")