diff options
Diffstat (limited to 'Lib/cmp.py')
-rw-r--r-- | Lib/cmp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/cmp.py b/Lib/cmp.py index a73b795f8b..4ebdfc60a2 100644 --- a/Lib/cmp.py +++ b/Lib/cmp.py @@ -51,7 +51,7 @@ def sig(st): # Return signature (i.e., type, size, mtime) from raw stat data return type, size, mtime def do_cmp(f1, f2): # Compare two files, really - bufsize = 8096 # Could be tuned + bufsize = 8*1024 # Could be tuned fp1 = open(f1, 'r') fp2 = open(f2, 'r') while 1: |