Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
refs/heads/main
/
.
/
Lib
/
test
/
test_os
/
utils.py
blob: e0c39598c316c8babfaba4ea385bfd81eaf260c0 [
file
] [
log
] [
blame
] [
edit
]
def
create_file
(
filename
,
content
=
b
'content'
):
with
open
(
filename
,
"xb"
,
0
)
as
fp
:
fp
.
write
(
content
)