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.
bazarr/libs/git/test/fixtures/cat_file.py

7 lines
136 B

import sys
with open(sys.argv[1]) as fd:
for line in fd.readlines():
sys.stdout.write(line)
sys.stderr.write(line)