mirror of https://github.com/morpheus65535/bazarr
34 lines
893 B
Python
34 lines
893 B
Python
# -*- coding: utf-8 -*-
|
|
import six
|
|
import sys
|
|
|
|
|
|
class open_file:
|
|
"""
|
|
Context manager that opens a filename and closes it on exit, but does
|
|
nothing for file-like objects.
|
|
"""
|
|
|
|
def __init__(self, filename, *args, **kwargs) -> None:
|
|
self.closing = kwargs.pop("closing", False)
|
|
if filename is None:
|
|
stream = sys.stdout if "w" in args else sys.stdin
|
|
if six.PY3:
|
|
self.fh = open(stream.fileno(), *args, **kwargs)
|
|
else:
|
|
self.fh = stream
|
|
elif isinstance(filename, six.string_types):
|
|
self.fh = open(filename, *args, **kwargs)
|
|
self.closing = True
|
|
else:
|
|
self.fh = filename
|
|
|
|
def __enter__(self):
|
|
return self.fh
|
|
|
|
def __exit__(self, exc_type, exc_val, exc_tb):
|
|
if self.closing:
|
|
self.fh.close()
|
|
|
|
return False
|