mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Refactoring
This commit is contained in:
parent
e4775b805d
commit
81be7c98ad
1 changed files with 2 additions and 4 deletions
|
@ -285,8 +285,7 @@ def pickle(obj, filename, protocol=0):
|
|||
f = None
|
||||
try:
|
||||
f = open(filename, "wb")
|
||||
p = Pickler(f, protocol)
|
||||
p.dump(obj)
|
||||
Pickler(f, protocol).dump(obj)
|
||||
f.close()
|
||||
f = None
|
||||
# print "Pickled", filename
|
||||
|
@ -299,8 +298,7 @@ def unpickle(filename):
|
|||
f, obj = None, None
|
||||
try:
|
||||
f = open(filename, "rb")
|
||||
p = Unpickler(f)
|
||||
x = p.load()
|
||||
x = Unpickler(f).load()
|
||||
f.close()
|
||||
f = None
|
||||
obj = x
|
||||
|
|
Loading…
Add table
Reference in a new issue