Show More
@@ -54,12 +54,9 b' def _normalizeblocks(a, b, blocks):' | |||||
54 | r.append(prev) |
|
54 | r.append(prev) | |
55 | return r |
|
55 | return r | |
56 |
|
56 | |||
57 | def _tostring(c): |
|
|||
58 | return str(c) |
|
|||
59 |
|
||||
60 | def bdiff(a, b): |
|
57 | def bdiff(a, b): | |
61 |
a = |
|
58 | a = bytes(a).splitlines(True) | |
62 |
b = |
|
59 | b = bytes(b).splitlines(True) | |
63 |
|
60 | |||
64 | if not a: |
|
61 | if not a: | |
65 | s = "".join(b) |
|
62 | s = "".join(b) |
General Comments 0
You need to be logged in to leave comments.
Login now