mirror of
https://github.com/python/cpython.git
synced 2025-12-08 06:10:17 +00:00
* Move test_posix.py and test_os.py to Lib/test/test_os/. * Split Windows specific test cases to a new test_windows.py file.
3 lines
113 B
Python
3 lines
113 B
Python
def create_file(filename, content=b'content'):
|
|
with open(filename, "xb", 0) as fp:
|
|
fp.write(content)
|