diff options
Diffstat (limited to 'lldb/scripts/Python/interface/SBError.i')
-rw-r--r-- | lldb/scripts/Python/interface/SBError.i | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lldb/scripts/Python/interface/SBError.i b/lldb/scripts/Python/interface/SBError.i index 60b051af7c0..d8dece2b22d 100644 --- a/lldb/scripts/Python/interface/SBError.i +++ b/lldb/scripts/Python/interface/SBError.i @@ -105,19 +105,19 @@ public: %pythoncode %{ __swig_getmethods__["value"] = GetError - if _newclass: x = property(GetError, None) + if _newclass: value = property(GetError, None, doc='''A read only property that returns the same result as GetError().''') __swig_getmethods__["fail"] = Fail - if _newclass: x = property(Fail, None) + if _newclass: fail = property(Fail, None, doc='''A read only property that returns the same result as Fail().''') __swig_getmethods__["success"] = Success - if _newclass: x = property(Success, None) + if _newclass: success = property(Success, None, doc='''A read only property that returns the same result as Success().''') __swig_getmethods__["description"] = GetCString - if _newclass: x = property(GetCString, None) + if _newclass: description = property(GetCString, None, doc='''A read only property that returns the same result as GetCString().''') __swig_getmethods__["type"] = GetType - if _newclass: x = property(GetType, None) + if _newclass: type = property(GetType, None, doc='''A read only property that returns the same result as GetType().''') %} |