cpython/Lib/lib-old/util.py

26 lines
632 B
Python
Raw Normal View History

# Module 'util' -- some useful functions that don't fit elsewhere
1990-10-13 16:23:40 -03:00
# NB: These are now built-in functions, but this module is provided
# for compatibility. Don't use in new programs unless you need backward
# compatibility (with old interpreters).
# Remove an item from a list.
# No complaints if it isn't in the list at all.
# If it occurs more than once, remove the first occurrence.
1990-10-13 16:23:40 -03:00
#
def remove(item, list):
if item in list: list.remove(item)
# Return a string containing a file's contents.
#
def readfile(fn):
return readopenfile(open(fn, 'r'))
# Read an open file until EOF.
#
def readopenfile(fp):
return fp.read()