Removed print that executes only on Unix boxes; that made it impossible

to have single "expected output" file.
This commit is contained in:
Tim Peters 2001-11-13 23:39:47 +00:00
parent 5ebfd36afa
commit 00cafa0f76
1 changed files with 2 additions and 2 deletions

View File

@ -229,8 +229,8 @@ def test_both():
verify(0, "Invalid access code should have raised exception.")
if os.name == "posix":
print " Trying incompatible flags, prot and access parameters."
f=open(TESTFN, "r+b")
# Try incompatible flags, prot and access parameters.
f = open(TESTFN, "r+b")
try:
m = mmap.mmap(f.fileno(), mapsize, flags=mmap.MAP_PRIVATE,
prot=mmap.PROT_READ, access=mmap.ACCESS_WRITE)