summary refs log tree commit diff stats
path: root/test/stuff/test5.py
diff options
context:
space:
mode:
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()
v class='alt'>
a614f048 ^
34a60763 ^
a614f048 ^
f07bb12f ^





4e9450f9 ^
f07bb12f ^
c776804d ^
a614f048 ^

c776804d ^
34a60763 ^
c776804d ^
62cd83ba ^
f07bb12f ^
c776804d ^
34a60763 ^
a614f048 ^
f07bb12f ^
c776804d ^
34a60763 ^
f07bb12f ^
34a60763 ^
a614f048 ^


c776804d ^
f07bb12f ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66