mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-08-28 18:46:57 +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.