Ignore:
Timestamp:
08/18/12 12:24:16 (12 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
Phase:
public
Message:

A difference of 4 bytes is allowed between short .pyc files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • diffdist.py

    r193 r310  
    6161                    if oldData[i]!=newData[i]: numDiffs += 1
    6262
    63                 if numDiffs<=3:
     63                if numDiffs<=4:
    6464                    print "File %s is considered to be the same in both versions with %d changes" % \
    6565                          (path, numDiffs)
    6666                    finalManifest.addFile(path, oldSize, oldSum)
    6767                    copyOld = True
    68                    
    6968
    7069        if not copyOld:
Note: See TracChangeset for help on using the changeset viewer.