Deleted Added
sdiff udiff text old ( 1309:7daf185ddae8 ) new ( 1758:74acd5b23964 )
full compact
1import MySQLdb, re, string
2
3def statcmp(a, b):
4 v1 = a.split('.')
5 v2 = b.split('.')
6
7 last = min(len(v1), len(v2)) - 1
8 for i,j in zip(v1[0:last], v2[0:last]):

--- 434 unchanged lines hidden ---