diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2003-02-06 17:50:01 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2003-02-06 17:50:01 (GMT) |
commit | 8eb4044f7e42af1134a6a98e52201df0a8aaa01f (patch) | |
tree | cf26831d1277d88e4ebea8ae177fdd1845e74d3c /Lib/filecmp.py | |
parent | e63846dc3a140f374d6e97e6b10d65bbaf99fb00 (diff) | |
download | cpython-8eb4044f7e42af1134a6a98e52201df0a8aaa01f.zip cpython-8eb4044f7e42af1134a6a98e52201df0a8aaa01f.tar.gz cpython-8eb4044f7e42af1134a6a98e52201df0a8aaa01f.tar.bz2 |
[Bug #680494] filecmp.py uses obsolete statcache module.
Simply replace all uses of statcache with os.stat.
Should I add a DeprecationWarning triggered if the use_statcache argument
is supplied, so we can remove it in 2.4?
Diffstat (limited to 'Lib/filecmp.py')
-rw-r--r-- | Lib/filecmp.py | 26 |
1 files changed, 9 insertions, 17 deletions
diff --git a/Lib/filecmp.py b/Lib/filecmp.py index 03c2ea3..982e487 100644 --- a/Lib/filecmp.py +++ b/Lib/filecmp.py @@ -11,7 +11,6 @@ Functions: import os import stat -import statcache __all__ = ["cmp","dircmp","cmpfiles"] @@ -30,8 +29,7 @@ def cmp(f1, f2, shallow=1, use_statcache=0): shallow -- Just check stat signature (do not read the files). defaults to 1. - use_statcache -- Do not stat() each file directly: go through - the statcache module for more efficiency. + use_statcache -- obsolete argument. Return value: @@ -39,16 +37,10 @@ def cmp(f1, f2, shallow=1, use_statcache=0): This function uses a cache for past comparisons and the results, with a cache invalidation mechanism relying on stale signatures. - Of course, if 'use_statcache' is true, this mechanism is defeated, - and the cache will never grow stale. """ - if use_statcache: - stat_function = statcache.stat - else: - stat_function = os.stat - s1 = _sig(stat_function(f1)) - s2 = _sig(stat_function(f2)) + s1 = _sig(os.stat(f1)) + s2 = _sig(os.stat(f2)) if s1[0] != stat.S_IFREG or s2[0] != stat.S_IFREG: return False if shallow and s1 == s2: @@ -188,12 +180,12 @@ class dircmp: ok = 1 try: - a_stat = statcache.stat(a_path) + a_stat = os.stat(a_path) except os.error, why: # print 'Can\'t stat', a_path, ':', why[1] ok = 0 try: - b_stat = statcache.stat(b_path) + b_stat = os.stat(b_path) except os.error, why: # print 'Can\'t stat', b_path, ':', why[1] ok = 0 @@ -275,7 +267,7 @@ def cmpfiles(a, b, common, shallow=1, use_statcache=0): a, b -- directory names common -- list of file names found in both directories shallow -- if true, do comparison based solely on stat() information - use_statcache -- if true, use statcache.stat() instead of os.stat() + use_statcache -- obsolete argument Returns a tuple of three lists: files that compare equal @@ -287,7 +279,7 @@ def cmpfiles(a, b, common, shallow=1, use_statcache=0): for x in common: ax = os.path.join(a, x) bx = os.path.join(b, x) - res[_cmp(ax, bx, shallow, use_statcache)].append(x) + res[_cmp(ax, bx, shallow)].append(x) return res @@ -297,9 +289,9 @@ def cmpfiles(a, b, common, shallow=1, use_statcache=0): # 1 for different # 2 for funny cases (can't stat, etc.) # -def _cmp(a, b, sh, st): +def _cmp(a, b, sh): try: - return not abs(cmp(a, b, sh, st)) + return not abs(cmp(a, b, sh)) except os.error: return 2 |