diff options
author | Caroline Tice <ctice@apple.com> | 2010-09-20 05:20:02 +0000 |
---|---|---|
committer | Caroline Tice <ctice@apple.com> | 2010-09-20 05:20:02 +0000 |
commit | dde9cff32aee03e98a5ed91fc8425f241058c771 (patch) | |
tree | d207dc97f063865b8addf9c4b01d6cbed2386f9e /lldb/source/API/SBModule.cpp | |
parent | fd02aa84dc5e5b96e44e1f93b4f57b206e6180b2 (diff) | |
download | bcm5719-llvm-dde9cff32aee03e98a5ed91fc8425f241058c771.tar.gz bcm5719-llvm-dde9cff32aee03e98a5ed91fc8425f241058c771.zip |
Add GetDescription() and __repr__ () methods to most API classes, to allow
"print" from inside Python to print out the objects in a more useful
manner.
llvm-svn: 114321
Diffstat (limited to 'lldb/source/API/SBModule.cpp')
-rw-r--r-- | lldb/source/API/SBModule.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/lldb/source/API/SBModule.cpp b/lldb/source/API/SBModule.cpp index e338101c4e9..a0b340a9cb7 100644 --- a/lldb/source/API/SBModule.cpp +++ b/lldb/source/API/SBModule.cpp @@ -11,6 +11,7 @@ #include "lldb/API/SBAddress.h" #include "lldb/API/SBFileSpec.h" #include "lldb/API/SBFileSpec.h" +#include "lldb/API/SBStream.h" #include "lldb/Core/Module.h" using namespace lldb; @@ -127,3 +128,24 @@ SBModule::ResolveSymbolContextForAddress (const SBAddress& addr, uint32_t resolv return sb_sc; } +bool +SBModule::GetDescription (SBStream &description) +{ + if (m_opaque_sp) + { + m_opaque_sp->Dump (description.get()); + } + else + description.Printf ("No value"); + + return true; +} + +PyObject * +SBModule::__repr__ () +{ + SBStream description; + description.ref(); + GetDescription (description); + return PyString_FromString (description.GetData()); +} |