Optimal Merge Base selection
John A Meinel
john at arbash-meinel.com
Wed Jul 13 18:12:48 BST 2005
As a quick aside the current weave code is 2.4 only. You are using
generator comprehensions, which do not exist in 2.3
Specifically, you are doing this:
on line 525:
bytes = sum((len(a) for a in text))
The list comprehension would be:
bytes = sum([len(a) for a in text])
John
=:->
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 253 bytes
Desc: OpenPGP digital signature
Url : https://lists.ubuntu.com/archives/bazaar/attachments/20050713/56d4dd45/attachment.pgp
More information about the bazaar
mailing list