write(bytes)
Write the bytes in bytes into memory at the current position of the file pointer; the file position is updated to point after the bytes that were written. If the mmap was created with ACCESS_READ
, then writing to it will raise a TypeError
exception.
Changed in version 3.5: Writable bytes-like object is now accepted.
Please login to continue.