[Lldb-commits] [PATCH] D67183: [Python] Implement truth testing for lldb.value

2019-09-04 Thread Jonas Devlieghere via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL370953: [Python] Implement truth testing for lldb.value (authored by JDevlieghere, committed by ). Herald added a project: LLVM. Herald added a subscriber: llvm-commits. Changed prior to commit: https:/

[Lldb-commits] [PATCH] D67183: [Python] Implement truth testing for lldb.value

2019-09-04 Thread Davide Italiano via Phabricator via lldb-commits
davide accepted this revision. davide added a comment. This revision is now accepted and ready to land. LGTM Repository: rLLDB LLDB CHANGES SINCE LAST ACTION https://reviews.llvm.org/D67183/new/ https://reviews.llvm.org/D67183 ___ lldb-commits

[Lldb-commits] [PATCH] D67183: [Python] Implement truth testing for lldb.value

2019-09-04 Thread Jonas Devlieghere via Phabricator via lldb-commits
JDevlieghere created this revision. JDevlieghere added reviewers: friss, LLDB. Herald added a project: LLDB. Python 3 calls __bool__() instead of __len__() and lldb.value only implemented the __len__ method. This adds the __bool__() implementation. Repository: rLLDB LLDB https://reviews.llvm.