diff options
author | Fred Drake <fdrake@acm.org> | 1998-02-27 16:21:31 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-02-27 16:21:31 (GMT) |
commit | 92e31944f4b2031bbc8be328a4315138e97ea882 (patch) | |
tree | e8945e9d7c3feb0b3cfd3c86f4509e7384139404 /Doc | |
parent | 26c73b7841e87babf3dd5e84db84d476c680d93a (diff) | |
download | cpython-92e31944f4b2031bbc8be328a4315138e97ea882.zip cpython-92e31944f4b2031bbc8be328a4315138e97ea882.tar.gz cpython-92e31944f4b2031bbc8be328a4315138e97ea882.tar.bz2 |
Deprecate the read() and write() methods.
Don't refer to them from the fromfile() and tofile() methods.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libarray.tex | 12 | ||||
-rw-r--r-- | Doc/libarray.tex | 12 |
2 files changed, 8 insertions, 16 deletions
diff --git a/Doc/lib/libarray.tex b/Doc/lib/libarray.tex index 2bcfb5d..0380bd6 100644 --- a/Doc/lib/libarray.tex +++ b/Doc/lib/libarray.tex @@ -84,8 +84,6 @@ are available, \exception{EOFError} is raised, but the items that were available are still inserted into the array. \var{f} must be a real built-in file object; something else with a \code{read()} method won't do. - -Also available as the \method{read()} method. \end{funcdesc} \begin{funcdesc}{fromlist}{list} @@ -106,14 +104,14 @@ Insert a new item with value \var{x} in the array before position \end{funcdesc} \begin{funcdesc}{read}{f\, n} +\deprecated {1.5.1} + {Use the \method{fromfile()} method.} Read \var{n} items (as machine values) from the file object \var{f} and append them to the end of the array. If less than \var{n} items are available, \exception{EOFError} is raised, but the items that were available are still inserted into the array. \var{f} must be a real built-in file object; something else with a \method{read()} method won't do. - -Also available as the \method{fromfile()} method. \end{funcdesc} \begin{funcdesc}{reverse}{} @@ -122,8 +120,6 @@ Reverse the order of the items in the array. \begin{funcdesc}{tofile}{f} Write all items (as machine values) to the file object \var{f}. - -Also available as the \function{write()} function. \end{funcdesc} \begin{funcdesc}{tolist}{} @@ -137,9 +133,9 @@ be written to a file by the \method{tofile()} method.) \end{funcdesc} \begin{funcdesc}{write}{f} +\deprecated {1.5.1} + {Use the \method{tofile()} method.} Write all items (as machine values) to the file object \var{f}. - -Also available as the \function{write()} function. \end{funcdesc} When an array object is printed or converted to a string, it is diff --git a/Doc/libarray.tex b/Doc/libarray.tex index 2bcfb5d..0380bd6 100644 --- a/Doc/libarray.tex +++ b/Doc/libarray.tex @@ -84,8 +84,6 @@ are available, \exception{EOFError} is raised, but the items that were available are still inserted into the array. \var{f} must be a real built-in file object; something else with a \code{read()} method won't do. - -Also available as the \method{read()} method. \end{funcdesc} \begin{funcdesc}{fromlist}{list} @@ -106,14 +104,14 @@ Insert a new item with value \var{x} in the array before position \end{funcdesc} \begin{funcdesc}{read}{f\, n} +\deprecated {1.5.1} + {Use the \method{fromfile()} method.} Read \var{n} items (as machine values) from the file object \var{f} and append them to the end of the array. If less than \var{n} items are available, \exception{EOFError} is raised, but the items that were available are still inserted into the array. \var{f} must be a real built-in file object; something else with a \method{read()} method won't do. - -Also available as the \method{fromfile()} method. \end{funcdesc} \begin{funcdesc}{reverse}{} @@ -122,8 +120,6 @@ Reverse the order of the items in the array. \begin{funcdesc}{tofile}{f} Write all items (as machine values) to the file object \var{f}. - -Also available as the \function{write()} function. \end{funcdesc} \begin{funcdesc}{tolist}{} @@ -137,9 +133,9 @@ be written to a file by the \method{tofile()} method.) \end{funcdesc} \begin{funcdesc}{write}{f} +\deprecated {1.5.1} + {Use the \method{tofile()} method.} Write all items (as machine values) to the file object \var{f}. - -Also available as the \function{write()} function. \end{funcdesc} When an array object is printed or converted to a string, it is |