summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-04-05 14:17:11 (GMT)
committerFred Drake <fdrake@acm.org>2000-04-05 14:17:11 (GMT)
commit605843f0c09fa3fc1a065615581c041de3134b80 (patch)
tree56c2eaeeebcd28a7b2aa1d42b412d504245a4eec /Lib/test
parent1ef4e2d54e5419b7164572db13330ed0b241fd0a (diff)
downloadcpython-605843f0c09fa3fc1a065615581c041de3134b80.zip
cpython-605843f0c09fa3fc1a065615581c041de3134b80.tar.gz
cpython-605843f0c09fa3fc1a065615581c041de3134b80.tar.bz2
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')
-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 e932bec..e5da187 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()