summaryrefslogtreecommitdiff
path: root/test cases/frameworks/1 boost/test_python_module.py
AgeCommit message (Collapse)Author
2021-08-31pylint: turn on superflous-parensDylan Baker
We have a lot of these. Some of them are harmless, if unidiomatic, such as `if (condition)`, others are potentially dangerous `assert(...)`, as `assert(condtion)` works as expected, but `assert(condition, message)` will result in an assertion that never triggers, as what you're actually asserting is `bool(tuple[2])`, which will always be true.
2019-07-11Adapting Boost Python library detection to Boost >= 1.67. Closes #4288.gjaeger1