You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
516 B
38 lines
516 B
import sys
|
|
try:
|
|
import _os as os
|
|
except ImportError:
|
|
import os
|
|
|
|
if not hasattr(os, "unlink"):
|
|
print("SKIP")
|
|
sys.exit()
|
|
|
|
# cleanup in case testfile exists
|
|
try:
|
|
os.unlink("testfile")
|
|
except OSError:
|
|
pass
|
|
|
|
# Should create a file
|
|
f = open("testfile", "a")
|
|
f.write("foo")
|
|
f.close()
|
|
|
|
f = open("testfile")
|
|
print(f.read())
|
|
f.close()
|
|
|
|
f = open("testfile", "a")
|
|
f.write("bar")
|
|
f.close()
|
|
|
|
f = open("testfile")
|
|
print(f.read())
|
|
f.close()
|
|
|
|
# cleanup
|
|
try:
|
|
os.unlink("testfile")
|
|
except OSError:
|
|
pass
|
|
|