~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/statcache.py

  • Committer: Martin Pool
  • Date: 2005-07-06 05:33:53 UTC
  • Revision ID: mbp@sourcefrog.net-20050706053353-7550f78d74fa4dc3
doc

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
This module basically gives a quick way to find the SHA-1 and related
26
26
information of a file in the working directory, without actually
27
 
reading and hashing the whole file.
 
27
reading and hashing the whole file.  The information is validated by
 
28
checking the size, mtime, ctime, etc of the file as returned by the
 
29
stat() system call.
 
30
 
 
31
This has no relation to the deprecated standard Python module called
 
32
statcache (vs bzrlib.statcache).
28
33
 
29
34
 
30
35