Minimal repro: ``` from typing import TypedDict class D(TypedDict): x: int def test(d: D) -> None: d.copy() ``` Expected: No error Actual: Object of class `Mapping` has no attribute `copy` [missing-attribute]