diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2020-01-07 16:45:43 -0800 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2020-01-07 16:45:43 -0800 |
commit | 6563826ff0f83cc8ef6c84154841245834a5b37e (patch) | |
tree | 19c35ecd6fb5ba37e5ff554e8a39454b4f647b27 /lldb/scripts/Python/python-extensions.swig | |
parent | 5e2f4dc37b1bf72bd27e929a68fec18ae1f5cfa8 (diff) | |
download | bcm5719-llvm-6563826ff0f83cc8ef6c84154841245834a5b37e.tar.gz bcm5719-llvm-6563826ff0f83cc8ef6c84154841245834a5b37e.zip |
Revert "Re-land "[lldb/Lua] Add string conversion operator for SBTarget.""
This was returning a pointer to a stack-allocated memory location. This
works for Python where we return a PythonString which must own the
underlying string.
Diffstat (limited to 'lldb/scripts/Python/python-extensions.swig')
-rw-r--r-- | lldb/scripts/Python/python-extensions.swig | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lldb/scripts/Python/python-extensions.swig b/lldb/scripts/Python/python-extensions.swig index 51b7e477911..c10c32b4487 100644 --- a/lldb/scripts/Python/python-extensions.swig +++ b/lldb/scripts/Python/python-extensions.swig @@ -502,6 +502,18 @@ } %extend lldb::SBTarget { + %nothreadallow; + PyObject *lldb::SBTarget::__str__ (){ + lldb::SBStream description; + $self->GetDescription (description, lldb::eDescriptionLevelBrief); + const char *desc = description.GetData(); + size_t desc_len = description.GetSize(); + if (desc_len > 0 && (desc[desc_len-1] == '\n' || desc[desc_len-1] == '\r')) + --desc_len; + return PythonString(llvm::StringRef(desc, desc_len)).release(); + } + %clearnothreadallow; + %pythoncode %{ def __eq__(self, rhs): if not isinstance(rhs, type(self)): |