summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1991-04-21 19:33:30 (GMT)
committerGuido van Rossum <guido@python.org>1991-04-21 19:33:30 (GMT)
commitfa0e726154f04ef32e9dec9c991e66ae7fec3f1d (patch)
treec7a67a6eb5bbbbc72673ae9566c5d16f666dfce1 /Lib
parente2e162ec42c310d03cbe6f1fe53799168e3d2b53 (diff)
downloadcpython-fa0e726154f04ef32e9dec9c991e66ae7fec3f1d.zip
cpython-fa0e726154f04ef32e9dec9c991e66ae7fec3f1d.tar.gz
cpython-fa0e726154f04ef32e9dec9c991e66ae7fec3f1d.tar.bz2
Remove reference to util.
Diffstat (limited to 'Lib')
-rwxr-xr-xLib/persist.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/persist.py b/Lib/persist.py
index bc91e4d..e503d95 100755
--- a/Lib/persist.py
+++ b/Lib/persist.py
@@ -62,7 +62,7 @@ def writedict(dict, fp):
sys.stdout = savestdout
def readdict(dict, fp):
- contents = fp.read() # Or: util.readopenfile(fp)
+ contents = fp.read()
globals = {}
exec(contents, globals)
top = globals['top']