]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Added readfile() and readopenfile() functions.
authorGuido van Rossum <guido@python.org>
Tue, 19 Feb 1991 13:04:40 +0000 (13:04 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 19 Feb 1991 13:04:40 +0000 (13:04 +0000)
Lib/lib-old/util.py
Lib/util.py

index dc67686a3272037747828a419fee1cbc264c8bcf..7a9caf7317df940db509ed83b06af7630ba7d829 100644 (file)
@@ -1,9 +1,30 @@
-# Module 'util' -- some useful functions that dont fit elsewhere
+# Module 'util' -- some useful functions that don't fit elsewhere
 
-# Remove an item from a list at most once
+
+# 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
+
+
+# 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):
+       BUFSIZE = 512*8
+       data = ''
+       while 1:
+               buf = fp.read(BUFSIZE)
+               if not buf: break
+               data = data + buf
+       return data
index dc67686a3272037747828a419fee1cbc264c8bcf..7a9caf7317df940db509ed83b06af7630ba7d829 100644 (file)
@@ -1,9 +1,30 @@
-# Module 'util' -- some useful functions that dont fit elsewhere
+# Module 'util' -- some useful functions that don't fit elsewhere
 
-# Remove an item from a list at most once
+
+# 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
+
+
+# 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):
+       BUFSIZE = 512*8
+       data = ''
+       while 1:
+               buf = fp.read(BUFSIZE)
+               if not buf: break
+               data = data + buf
+       return data