diff options
author | Guido van Rossum <guido@python.org> | 1991-04-21 19:33:30 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-04-21 19:33:30 (GMT) |
commit | fa0e726154f04ef32e9dec9c991e66ae7fec3f1d (patch) | |
tree | c7a67a6eb5bbbbc72673ae9566c5d16f666dfce1 /Lib | |
parent | e2e162ec42c310d03cbe6f1fe53799168e3d2b53 (diff) | |
download | cpython-fa0e726154f04ef32e9dec9c991e66ae7fec3f1d.zip cpython-fa0e726154f04ef32e9dec9c991e66ae7fec3f1d.tar.gz cpython-fa0e726154f04ef32e9dec9c991e66ae7fec3f1d.tar.bz2 |
Remove reference to util.
Diffstat (limited to 'Lib')
-rwxr-xr-x | Lib/persist.py | 2 |
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'] |