diff options
author | Guido van Rossum <guido@python.org> | 1991-04-07 13:43:34 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-04-07 13:43:34 (GMT) |
commit | d9d2c8246c238ac95057b082aa64b5db00a398a4 (patch) | |
tree | a7f3c611790ba15d9b4e4890b577616258d74b51 /Lib/lib-old | |
parent | 6179fe6a08200649387393f281fe2be6d546418a (diff) | |
download | cpython-d9d2c8246c238ac95057b082aa64b5db00a398a4.zip cpython-d9d2c8246c238ac95057b082aa64b5db00a398a4.tar.gz cpython-d9d2c8246c238ac95057b082aa64b5db00a398a4.tar.bz2 |
This is no longer needed, since all these functions are now built-in
(with different interfaces).
Change the module definition to call the built-in functions,
for compatibility.
Diffstat (limited to 'Lib/lib-old')
-rw-r--r-- | Lib/lib-old/util.py | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/Lib/lib-old/util.py b/Lib/lib-old/util.py index 7a9caf7..bb0a870 100644 --- a/Lib/lib-old/util.py +++ b/Lib/lib-old/util.py @@ -1,15 +1,16 @@ # 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 (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): - for i in range(len(list)): - if list[i] = item: - del list[i] - break + if item in list: list.remove(item) # Return a string containing a file's contents. @@ -21,10 +22,4 @@ def readfile(fn): # Read an open file until EOF. # def readopenfile(fp): - BUFSIZE = 512*8 - data = '' - while 1: - buf = fp.read(BUFSIZE) - if not buf: break - data = data + buf - return data + return fp.read() |