]> granicus.if.org Git - python/commitdiff
Mark Hammond:
authorFred Drake <fdrake@acm.org>
Wed, 5 Apr 2000 14:17:11 +0000 (14:17 +0000)
committerFred Drake <fdrake@acm.org>
Wed, 5 Apr 2000 14:17:11 +0000 (14:17 +0000)
This patch fixes the mmap module on Windows 9x.

Also updates the mmap test to remove the test file.

Lib/test/test_mmap.py

index e932bec3b013b2258e64b6bb21ad4a77e1919f17..e5da187e0c73c65b7bf30947962360985f59e56d 100644 (file)
@@ -59,6 +59,8 @@ def test_both():
         assert start == PAGESIZE
         assert end == PAGESIZE + 6
         
+    m.close()
+    os.unlink("foo")
     print ' Test passed'
 
 test_both()