Staging
v0.5.1
https://github.com/python/cpython
Revision f5e0ea89db4475a79a6bd6cb5e10c2e0c0ff602f authored by Guido van Rossum on 12 September 1994, 15:35:36 UTC, committed by Guido van Rossum on 12 September 1994, 15:35:36 UTC
	extensions; add -lm to math module definition

	* Modules/Makefile.pre.in: remove *.so and so_locations on clobber
1 parent 73737ab
Raw File
Tip revision: f5e0ea89db4475a79a6bd6cb5e10c2e0c0ff602f authored by Guido van Rossum on 12 September 1994, 15:35:36 UTC
* Modules/Setup.in: define PYTHONPATH using COREPYTHONPATH for
Tip revision: f5e0ea8
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