summaryrefslogtreecommitdiff
path: root/Lib/test/test_mmap.py
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-04-05 14:17:11 +0000
committerFred Drake <fdrake@acm.org>2000-04-05 14:17:11 +0000
commitdfd80b1f345246fc815cba314a8799889da2596c (patch)
treeb40f36790169a4b9f5301b7bb27395292df9e16d /Lib/test/test_mmap.py
parent100cda68de897aa77e6f75b0bd72673addaf7a46 (diff)
downloadcpython-dfd80b1f345246fc815cba314a8799889da2596c.tar.gz
Mark Hammond:
This patch fixes the mmap module on Windows 9x. Also updates the mmap test to remove the test file.
Diffstat (limited to 'Lib/test/test_mmap.py')
-rw-r--r--Lib/test/test_mmap.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_mmap.py b/Lib/test/test_mmap.py
index e932bec3b0..e5da187e0c 100644
--- a/Lib/test/test_mmap.py
+++ b/Lib/test/test_mmap.py
@@ -59,6 +59,8 @@ def test_both():
assert start == PAGESIZE
assert end == PAGESIZE + 6
+ m.close()
+ os.unlink("foo")
print ' Test passed'
test_both()