| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2024-02-21 | [lldb][test] Modernize asserts (#82503) | Jordan Rupprecht | |
| This uses [teyit](https://pypi.org/project/teyit/) to modernize asserts, as recommended by the [unittest release notes](https://docs.python.org/3.12/whatsnew/3.12.html#id3). For example, `assertTrue(a == b)` is replaced with `assertEqual(a, b)`. This produces better error messages, e.g. `error: unexpectedly found 1 and 2 to be different` instead of `error: False`. | |||
| 2023-05-25 | [NFC][Py Reformat] Reformat python files in lldb | Jonas Devlieghere | |
| This is an ongoing series of commits that are reformatting our Python code. Reformatting is done with `black` (23.1.0). If you end up having problems merging this commit because you have made changes to a python file, the best way to handle that is to run `git checkout --ours <yourfile>` and then reformat it with black. RFC: https://discourse.llvm.org/t/rfc-document-and-standardize-python-code-style Differential revision: https://reviews.llvm.org/D151460 | |||
| 2023-01-25 | [LLDB] Fix for libc++ atomic allowing modification of contained value | Pavel Kosov | |
| Reviewed By: clayborg Differential Revision: https://reviews.llvm.org/D140623 | |||
