質問編集履歴
1
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
|
7
7
|
```python
|
8
8
|
|
9
|
-
>>> class My
|
9
|
+
>>> class MyClass():
|
10
10
|
|
11
11
|
... def __eq__(self, value):
|
12
12
|
|
@@ -14,9 +14,9 @@
|
|
14
14
|
|
15
15
|
...
|
16
16
|
|
17
|
-
>>> a = My
|
17
|
+
>>> a = MyClass()
|
18
18
|
|
19
|
-
>>> b = My
|
19
|
+
>>> b = MyClass()
|
20
20
|
|
21
21
|
>>> a == b
|
22
22
|
|