Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
694d9b35
Commit
694d9b35
authored
Feb 06, 2003
by
Neal Norwitz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update doc to reflect code changes for obsoleting use_statcache parameter
parent
d683504b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
8 deletions
+3
-8
Doc/lib/libfilecmp.tex
Doc/lib/libfilecmp.tex
+3
-8
No files found.
Doc/lib/libfilecmp.tex
View file @
694d9b35
...
...
@@ -16,16 +16,11 @@ 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. If
\var
{
use
_
statcache
}
is given and is true,
\function
{
statcache.stat()
}
will be called rather then
\function
{
os.stat()
}
; the default is to use
\function
{
os.stat()
}
.
\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. Note that using
\var
{
use
_
statcache
}
true will cause the cache invalidation mechanism to
fail --- the stale stat value will be used from
\refmodule
{
statcache
}
's
cache.
unless their
\function
{
os.stat()
}
signature changes.
Note that no external programs are called from this function, giving it
portability and efficiency.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment