diff options
-rw-r--r-- | Lib/test/test_mmap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_mmap.py b/Lib/test/test_mmap.py index fcf3c92..4fb4ec1 100644 --- a/Lib/test/test_mmap.py +++ b/Lib/test/test_mmap.py @@ -17,7 +17,7 @@ def test_both(): f.write('\0'* PAGESIZE) f.write('foo') f.write('\0'* (PAGESIZE-3) ) - + f.flush() m = mmap.mmap(f.fileno(), 2 * PAGESIZE) f.close() |