[llvm-branch-commits] [lldb] [lldb] Fix existing operators on lldb.value (PR #214297)

via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Fri Aug 7 03:17:00 PDT 2026


================
@@ -480,22 +480,22 @@ class value(object):
         return result
 
     def __ifloordiv__(self, other):
-        result =  self.__floordiv__(self, other)
+        result =  self.__floordiv__(other)
----------------
Nerixyz wrote:

Yes, both Python 2 and 3 complain with
```
TypeError: value.__floordiv__() takes 2 positional arguments but 3 were given
```

https://github.com/llvm/llvm-project/pull/214297


More information about the llvm-branch-commits mailing list