mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-23 06:42:21 +02:00
Python 3.6 doesn't appear to support IO[bytes] (and this is also from the typing library), so we instead now inherit from RawIOBase. This provides read, but does not come with a constructor (like FileIO) so is suitable for our needs. Fixes issue #376.