summaryrefslogtreecommitdiffstats
path: root/Lib/filecmp.py
diff options
context:
space:
mode:
authorMoshe Zadka <moshez@math.huji.ac.il>2000-12-03 20:48:07 (GMT)
committerMoshe Zadka <moshez@math.huji.ac.il>2000-12-03 20:48:07 (GMT)
commitafb17fc7b2782bddd74ffcf4f5b51efc9a9b4545 (patch)
tree15c7d72fbefb30198a438750d0463362f5af36c7 /Lib/filecmp.py
parent1d99433a58c8c69caa734acb884f274663885a17 (diff)
downloadcpython-afb17fc7b2782bddd74ffcf4f5b51efc9a9b4545.zip
cpython-afb17fc7b2782bddd74ffcf4f5b51efc9a9b4545.tar.gz
cpython-afb17fc7b2782bddd74ffcf4f5b51efc9a9b4545.tar.bz2
Call of _cmp had wrong number of paramereters.
Fixed definition of _cmp.
Diffstat (limited to 'Lib/filecmp.py')
-rw-r--r--Lib/filecmp.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/filecmp.py b/Lib/filecmp.py
index e84dd07..e5024a4 100644
--- a/Lib/filecmp.py
+++ b/Lib/filecmp.py
@@ -295,9 +295,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):
+def _cmp(a, b, sh, st):
try:
- return not abs(cmp(a, b))
+ return not abs(cmp(a, b, sh, st))
except os.error:
return 2