Rev 4762: Since we changed the repr() for StaticTuple, go ahead and in http://bazaar.launchpad.net/~jameinel/bzr/2.1-static-tuple

John Arbash Meinel john at arbash-meinel.com
Wed Oct 7 20:35:25 BST 2009


At http://bazaar.launchpad.net/~jameinel/bzr/2.1-static-tuple

------------------------------------------------------------
revno: 4762
revision-id: john at arbash-meinel.com-20091007193509-ncpv7t7amrrnk5ti
parent: john at arbash-meinel.com-20091007193422-5gddlqpk0mrujtw7
committer: John Arbash Meinel <john at arbash-meinel.com>
branch nick: 2.1-static-tuple
timestamp: Wed 2009-10-07 14:35:09 -0500
message:
  Since we changed the repr() for StaticTuple, go ahead and
  wrap it back into a pure 'tuple' object so we get the easier-to-read debug
  info from _dump_tree.
-------------- next part --------------
=== modified file 'bzrlib/chk_map.py'
--- a/bzrlib/chk_map.py	2009-10-06 18:14:06 +0000
+++ b/bzrlib/chk_map.py	2009-10-07 19:35:09 +0000
@@ -194,7 +194,7 @@
             for key, value in sorted(node._items.iteritems()):
                 # Don't use prefix nor indent here to line up when used in
                 # tests in conjunction with assertEqualDiff
-                result.append('      %r %r' % (key, value))
+                result.append('      %r %r' % (tuple(key), value))
         return result
 
     @classmethod



More information about the bazaar-commits mailing list