[Lldb-commits] [lldb] [lldb] [NFC] Fix swig docstring annotations (PR #88073)
Jason Molenda via lldb-commits
lldb-commits at lists.llvm.org
Mon Apr 8 17:23:16 PDT 2024
jasonmolenda wrote:
An example of the difference in the output this makes for `script help (lldb.SBProcess)`. Old:
```
| PutSTDIN(self, src)
| Writes data into the current process's stdin. API client specifies a Python
| string as the only argument.
```
new:
```
| PutSTDIN(self, src)
| PutSTDIN(SBProcess self, char const * src) -> size_t
|
| Writes data into the current process's stdin. API client specifies a Python
| string as the only argument.
```
https://github.com/llvm/llvm-project/pull/88073
More information about the lldb-commits
mailing list