summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_os/utils.py
blob: e0c39598c316c8babfaba4ea385bfd81eaf260c0 (plain)
1
2
3
def create_file(filename, content=b'content'):
    with open(filename, "xb", 0) as fp:
        fp.write(content)