more instances of the bizarre "del f; del m" ways to spell .close() (del
won't do any good here under Jython, etc).
verify(m[:] == 'c'*mapsize,
"Write-through memory map memory not updated properly.")
m.flush()
- del m, f
+ m.close()
+ f.close()
f = open(TESTFN, 'rb')
stuff = f.read()
f.close()
- verify(open(TESTFN, 'rb').read() == 'c'*mapsize,
+ verify(stuff == 'c'*mapsize,
"Write-through memory map data file not updated properly.")
print " Opening mmap with access=ACCESS_COPY"