We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 224ad3f commit e178478Copy full SHA for e178478
vm/src/obj/objdict.rs
@@ -320,8 +320,6 @@ impl PyDictRef {
320
PyDictRef::merge(&self.entries, dict_obj, kwargs, vm)
321
}
322
323
-<<<<<<< HEAD
324
-=======
325
#[pymethod(name = "__ior__")]
326
fn ior(self, other: PyObjectRef, vm: &VirtualMachine) -> PyResult {
327
let dicted: Result<PyDictRef, _> = other.clone().downcast();
@@ -354,7 +352,6 @@ impl PyDictRef {
354
352
Err(vm.new_type_error("__or__ not implemented for non-dict type".to_owned()))
355
353
356
357
->>>>>>> 41849ab5... fixed: returned wrong error when union opration is invoked with other type. So far it was a key error now it is a type error.
358
#[pymethod]
359
fn pop(
360
self,
0 commit comments