mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-04-05 15:31:32 +08:00
memoryview type information inconsistent with documentation of typing module. `memoryview` should be a ByteString like the docs say. `memoryview.__init__` does not accept str, and instead of a union it should just accept ByteString. `memoryview.__iter__` returns an Iterator[int] not bytes.