diff options
author | Raymond Hettinger <python@rcn.com> | 2004-12-05 01:58:09 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-12-05 01:58:09 (GMT) |
commit | f3fa9460dee3a11f862bd43fb7e4a70e994363e6 (patch) | |
tree | 956ea5e541e3801d84eda964c854f39f556e2c1e /Doc/lib/libfilecmp.tex | |
parent | 664347be946f0a217f91259f93962727ba84c287 (diff) | |
download | cpython-f3fa9460dee3a11f862bd43fb7e4a70e994363e6.zip cpython-f3fa9460dee3a11f862bd43fb7e4a70e994363e6.tar.gz cpython-f3fa9460dee3a11f862bd43fb7e4a70e994363e6.tar.bz2 |
Removed deprecated use_statcache argument.
Diffstat (limited to 'Doc/lib/libfilecmp.tex')
-rw-r--r-- | Doc/lib/libfilecmp.tex | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Doc/lib/libfilecmp.tex b/Doc/lib/libfilecmp.tex index 7747c8c..edc3aad 100644 --- a/Doc/lib/libfilecmp.tex +++ b/Doc/lib/libfilecmp.tex @@ -11,13 +11,12 @@ directories, with various optional time/correctness trade-offs. The \module{filecmp} module defines the following functions: -\begin{funcdesc}{cmp}{f1, f2\optional{, shallow\optional{, use_statcache}}} +\begin{funcdesc}{cmp}{f1, f2\optional{, shallow}} Compare the files named \var{f1} and \var{f2}, returning \code{True} if they seem equal, \code{False} otherwise. Unless \var{shallow} is given and is false, files with identical \function{os.stat()} signatures are taken to be equal. -\versionchanged[\var{use_statcache} is obsolete and ignored.]{2.3} Files that were compared using this function will not be compared again unless their \function{os.stat()} signature changes. @@ -27,7 +26,7 @@ portability and efficiency. \end{funcdesc} \begin{funcdesc}{cmpfiles}{dir1, dir2, common\optional{, - shallow\optional{, use_statcache}}} + shallow}} Returns three lists of file names: \var{match}, \var{mismatch}, \var{errors}. \var{match} contains the list of files match in both directories, \var{mismatch} includes the names of those that don't, @@ -37,8 +36,8 @@ lack permission to read them or many other reasons, but always that the comparison could not be done for some reason. The \var{common} parameter is a list of file names found in both directories. -The \var{shallow} and \var{use_statcache} parameters have the same -meanings and default values as for \function{filecmp.cmp()}. +The \var{shallow} parameter has the same +meaning and default value as for \function{filecmp.cmp()}. \end{funcdesc} Example: |