2023-08-22 11:15:46 -04:00
|
|
|
import os
|
2016-02-06 14:58:58 -05:00
|
|
|
|
2018-11-26 00:52:18 -05:00
|
|
|
if not hasattr(os, "remove"):
|
2016-02-06 14:58:58 -05:00
|
|
|
print("SKIP")
|
2017-06-10 13:14:16 -04:00
|
|
|
raise SystemExit
|
2016-02-06 14:58:58 -05:00
|
|
|
|
|
|
|
# cleanup in case testfile exists
|
|
|
|
try:
|
2018-11-26 00:52:18 -05:00
|
|
|
os.remove("testfile")
|
2016-02-06 14:58:58 -05:00
|
|
|
except OSError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
try:
|
|
|
|
f = open("testfile", "r+b")
|
|
|
|
print("Unexpectedly opened non-existing file")
|
|
|
|
except OSError:
|
|
|
|
print("Expected OSError")
|
|
|
|
pass
|
|
|
|
|
|
|
|
f = open("testfile", "w+b")
|
|
|
|
f.write(b"1234567890")
|
|
|
|
f.seek(0)
|
|
|
|
print(f.read())
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
# Open with truncation
|
|
|
|
f = open("testfile", "w+b")
|
|
|
|
f.write(b"abcdefg")
|
|
|
|
f.seek(0)
|
|
|
|
print(f.read())
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
# Open without truncation
|
|
|
|
f = open("testfile", "r+b")
|
|
|
|
f.write(b"1234")
|
|
|
|
f.seek(0)
|
|
|
|
print(f.read())
|
|
|
|
f.close()
|
2016-03-17 16:09:33 -04:00
|
|
|
|
|
|
|
# cleanup
|
|
|
|
try:
|
2018-11-26 00:52:18 -05:00
|
|
|
os.remove("testfile")
|
2016-03-17 16:09:33 -04:00
|
|
|
except OSError:
|
|
|
|
pass
|