]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove reference to util.
authorGuido van Rossum <guido@python.org>
Sun, 21 Apr 1991 19:33:30 +0000 (19:33 +0000)
committerGuido van Rossum <guido@python.org>
Sun, 21 Apr 1991 19:33:30 +0000 (19:33 +0000)
Lib/persist.py

index bc91e4dd5a888a9c7ba2f69e29b3254893b95a59..e503d95ecf8f6511025b4c0bbace799637358e8e 100755 (executable)
@@ -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']