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:
parent
bf9ce90a5b
commit
95a0d7d007
7 changed files with 21 additions and 28 deletions
|
@ -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,
|
||||
|
|
|
@ -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"):
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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
|
||||
|
||||
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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):
|
||||
|
|
Loading…
Add table
Reference in a new issue