Staging
v0.5.1
https://github.com/python/cpython
Revision 56b14d4484e0d3ad9b6d186c3527c414e9a80d57 authored by Jack Jansen on 14 August 1995, 12:33:48 UTC, committed by Jack Jansen on 14 August 1995, 12:33:48 UTC
1 parent 696c958
Raw File
Tip revision: 56b14d4484e0d3ad9b6d186c3527c414e9a80d57 authored by Jack Jansen on 14 August 1995, 12:33:48 UTC
Lots of stuff removed: gone to various other files.
Tip revision: 56b14d4
util.py
# Module 'util' -- some useful functions that don't fit elsewhere

# 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 (i.e. need to run 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.
#
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()
back to top