8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99c3f74 commit 8f4bd41Copy full SHA for 8f4bd41
py/code.go
@@ -229,3 +229,19 @@ func (co *Code) Addr2Line(addrq int32) int32 {
229
}
230
return line
231
232
+
233
+// FIXME this should be the default?
234
+func (co *Code) M__eq__(other Object) Object {
235
+ if otherCo, ok := other.(*Code); ok && co == otherCo {
236
+ return True
237
+ }
238
+ return False
239
+}
240
241
242
+func (co *Code) M__ne__(other Object) Object {
243
244
245
246
247
0 commit comments