Rev 5441: Smal tweaks from reviewer feedback. in http://bazaar.launchpad.net/~jameinel/bzr/2.3-gcb-peak-mem
John Arbash Meinel
john at arbash-meinel.com
Sun Sep 26 21:45:46 BST 2010
At http://bazaar.launchpad.net/~jameinel/bzr/2.3-gcb-peak-mem
------------------------------------------------------------
revno: 5441
revision-id: john at arbash-meinel.com-20100926204528-f1sltmziilg55lw2
parent: john at arbash-meinel.com-20100921193033-9ftw56og72mhlwo4
committer: John Arbash Meinel <john at arbash-meinel.com>
branch nick: 2.3-gcb-peak-mem
timestamp: Sun 2010-09-26 15:45:28 -0500
message:
Smal tweaks from reviewer feedback.
-------------- next part --------------
=== modified file 'NEWS'
--- a/NEWS 2010-09-21 10:48:23 +0000
+++ b/NEWS 2010-09-26 20:45:28 +0000
@@ -31,6 +31,9 @@
Internals
*********
+* Small change to GroupCompressBlock to work more in terms of 'chunks'
+ rather than 'content' for its compressed storage. (John Arbash Meinel)
+
Testing
*******
=== modified file 'bzrlib/groupcompress.py'
--- a/bzrlib/groupcompress.py 2010-09-21 19:30:33 +0000
+++ b/bzrlib/groupcompress.py 2010-09-26 20:45:28 +0000
@@ -215,6 +215,10 @@
@property
def _z_content(self):
+ """Return z_content_chunks as a simple string.
+
+ Meant only to be used by the test suite.
+ """
if self._z_content_chunks is not None:
return ''.join(self._z_content_chunks)
return None
More information about the bazaar-commits
mailing list