Michael Lee
Michael Lee
Fixes #12112. The reason why mypy was crashing with a "Must not defer during final iteration" error in the following snippet: from typing import TypeVar def test() -> None: T...
This pull request fixes #9838. It turns out that when an object is using a metaclass, it uses that metaclass as the fallback instead of `builtins.type`. This caused the `if...
Fixes #7891; fixes #10961. This PR adds support for optionally post-rendering hooks. I opted to implement this by adding two new CLI flags: `--post-renderer-hooks` and `--post-renderer-hooks-args`. Why? 1. It retains...