(filename, content=b'content')
| 94 | |
| 95 | |
| 96 | def create_file(filename, content=b'content'): |
| 97 | with open(filename, "xb", 0) as fp: |
| 98 | fp.write(content) |
| 99 | |
| 100 | |
| 101 | # bpo-41625: On AIX, splice() only works with a socket, not with a pipe. |
no test coverage detected