summary refs log tree commit diff stats
path: root/test/stuff/test5.py
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2009-12-30 17:40:50 +0100
committerhut <hut@lavabit.com>2009-12-30 17:40:50 +0100
commitcd603ff4d0573c407c82f40cba9a164f7373585d (patch)
treef59b63105376c4321deba27cc8f905d1b2b35cdc /test/stuff/test5.py
parent69a0e82727efa11efb97f965b562de051349d942 (diff)
downloadranger-cd603ff4d0573c407c82f40cba9a164f7373585d.tar.gz
removed test/stuff directory
It contained non-relevant scripts
Diffstat (limited to 'test/stuff/test5.py')
-rw-r--r--test/stuff/test5.py26
1 files changed, 0 insertions, 26 deletions
diff --git a/test/stuff/test5.py b/test/stuff/test5.py
deleted file mode 100644
index 682a716f..00000000
--- a/test/stuff/test5.py
+++ /dev/null
@@ -1,26 +0,0 @@
-class A:
-	def foo(self, x):
-		y = x + 1
-		print(y)
-		return y
-
-	@staticmethod
-	def zar():
-		print("l o l")
-
-class B(A):
-	def bar(self, x):
-		y = self.foo(x) + 3
-		print(y)
-		return y
-
-class C():
-	def foo(self, x):
-		y = x - 1
-		print(y)
-		return y
-
-a = C()
-A.foo(a, 5)
-
-B.zar()