[Python-checkins] CVS: python/dist/src/Lib/test test_mmap.py,1.3,1.4
Fred Drake
python-dev@python.org
Wed, 5 Apr 2000 10:17:13 -0400
Update of /projects/cvsroot/python/dist/src/Lib/test
In directory seahag.cnri.reston.va.us:/home/fdrake/projects/python/Lib/test
Modified Files:
test_mmap.py
Log Message:
Mark Hammond:
This patch fixes the mmap module on Windows 9x.
Also updates the mmap test to remove the test file.
Index: test_mmap.py
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Lib/test/test_mmap.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** test_mmap.py 2000年03月31日 01:20:33 1.3
--- test_mmap.py 2000年04月05日 14:17:11 1.4
***************
*** 60,63 ****
--- 60,65 ----
assert end == PAGESIZE + 6
+ m.close()
+ os.unlink("foo")
print ' Test passed'