diff options
Diffstat (limited to 'Lib/lib-old/util.py')
| -rw-r--r-- | Lib/lib-old/util.py | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/lib-old/util.py b/Lib/lib-old/util.py index 6cb1433426..104af1e385 100644 --- a/Lib/lib-old/util.py +++ b/Lib/lib-old/util.py @@ -10,16 +10,16 @@  # If it occurs more than once, remove the first occurrence.  #  def remove(item, list): -	if item in list: list.remove(item) +    if item in list: list.remove(item)  # Return a string containing a file's contents.  #  def readfile(fn): -	return readopenfile(open(fn, 'r')) +    return readopenfile(open(fn, 'r'))  # Read an open file until EOF.  #  def readopenfile(fp): -	return fp.read() +    return fp.read()  | 
