summaryrefslogtreecommitdiffstats
path: root/Lib/cmpcache.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/cmpcache.py')
-rw-r--r--Lib/cmpcache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/cmpcache.py b/Lib/cmpcache.py
index d59fa60..494dcc1 100644
--- a/Lib/cmpcache.py
+++ b/Lib/cmpcache.py
@@ -58,7 +58,7 @@ def sig(st):
#
def do_cmp(f1, f2):
#print ' cmp', f1, f2 # XXX remove when debugged
- bufsize = 8096 # Could be tuned
+ bufsize = 8*1024 # Could be tuned
fp1 = open(f1, 'r')
fp2 = open(f2, 'r')
while 1: