1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

refactor/modernize the calls to open()

use "with", flags
This commit is contained in:
Shlomi Fish 2020-10-06 18:43:15 +03:00
parent bf9ce90a5b
commit 95a0d7d007
7 changed files with 21 additions and 28 deletions

View file

@ -519,7 +519,8 @@ class PysolMenubar(PysolMenubarTk):
text += os.linesep
enc = locale.getpreferredencoding()
try:
open(fn, 'a').write(text.encode(enc, 'replace'))
with open(fn, 'at') as fh:
fh.write(text.encode(enc, 'replace'))
except Exception as err:
d = MfxExceptionDialog(
self.top, err,

View file

@ -32,7 +32,7 @@ def read_cardset_config(dirname, filename):
This function returns None if any errors occurred.
"""
with open(filename, "r") as f:
with open(filename, "rt") as f:
lines = f.readlines()
lines = [line.strip() for line in lines]
if not lines[0].startswith("PySol"):

View file

@ -498,19 +498,15 @@ def test(args=None):
fn = 'test.html'
if fn == '-':
f = sys.stdin
data = sys.stdin.read()
else:
try:
f = open(fn, 'r')
with open(fn, 'rt') as fh:
data = fh.read()
except IOError as msg:
print(fn, ":", msg)
sys.exit(1)
data = f.read()
if f is not sys.stdin:
f.close()
if silent:
f = formatter.NullFormatter()
else:

View file

@ -285,30 +285,23 @@ class KwStruct:
# ************************************************************************
def pickle(obj, filename, protocol=0):
f = None
try:
f = open(filename, "wb")
Pickler(f, protocol).dump(obj)
f.close()
f = None
with open(filename, "wb") as fh:
Pickler(fh, protocol).dump(obj)
# print "Pickled", filename
finally:
if f:
f.close()
pass
def unpickle(filename):
f, obj = None, None
obj = None
try:
f = open(filename, "rb")
x = Unpickler(f).load()
f.close()
f = None
with open(filename, "rb") as fh:
x = Unpickler(fh).load()
obj = x
# print "Unpickled", filename
finally:
if f:
f.close()
pass
return obj

View file

@ -524,9 +524,10 @@ class CardsetInfoDialog(MfxDialog):
frame.rowconfigure(1, weight=1)
#
text = ''
f = os.path.join(cardset.dir, "COPYRIGHT")
fn = os.path.join(cardset.dir, "COPYRIGHT")
try:
text = open(f).read()
with open(fn, "rt") as fh:
text = fh.read()
except Exception:
pass
if text:

View file

@ -487,9 +487,10 @@ class CardsetInfoDialog(MfxDialog):
frame.rowconfigure(1, weight=1)
#
text = ''
f = os.path.join(cardset.dir, "COPYRIGHT")
fn = os.path.join(cardset.dir, "COPYRIGHT")
try:
text = open(f).read()
with open(fn, "rt") as fh:
text = fh.read()
except Exception:
pass
if text:

View file

@ -295,7 +295,8 @@ class Base_HTMLViewer:
import codecs
return codecs.open(url, encoding='utf-8')
else:
return open(url, "rb")
with open(url, "rb") as fh:
return fh
return my_open(url), url
def display(self, url, add=1, relpath=1, xview=0, yview=0):