-----
- Fix the handling of parenthesized lambdas in the fixer. The innermost
parentheses arounda lambda are now preserved.
- Minor speed enhancements.
- Fix the handling of autofixing in certain expressions when there is no
whitespace between a hard keyword and a parenthesis, inserting spaces when
necessary.
- Fix unnecessarily parenthesized ``with`` and ``from ... import ...`` statements.
- Preserve parentheses immediately under unary operations, as they may aid
readability.
- Remove W120. It is automatically fixed by the latest ``black`` versions.
- In restricted cases, the fixer will now automatically join implicitly
concatenated strings when there is no newline. This autofix covers some cases
of E100.