Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Portable Python script across Python version | Serge Guelton | 2018-12-18 | 1 | -3/+3 |
| | | | | | | | | | | | In Python3, dict.items, dict.keys, dict.values, zip, map and filter no longer return lists, they create generator instead. The portability patch consists in forcing an extra `list` call if the result is actually used as a list. `map` are replaced by list comprehension and `filter` by filtered list comprehension. Differential Revision: https://reviews.llvm.org/D55197 llvm-svn: 349501 | ||||
* | Portable Python script across version | Serge Guelton | 2018-12-03 | 1 | -5/+5 |
| | | | | | | | | | Have all classes derive from object: that's implicitly the default in Python3, it needs to be done explicilty in Python2. Differential Revision: https://reviews.llvm.org/D55121 llvm-svn: 348127 | ||||
* | Add coding and shebang. | Vassil Vassilev | 2017-03-02 | 1 | -0/+3 |
| | | | | | | Reviewed by Artem Dergachev (D26030)! llvm-svn: 296781 | ||||
* | [scan-build] Move non user-facing utilities to share | Jonathan Roelofs | 2015-11-13 | 1 | -0/+248 |
llvm-svn: 253068 |