Rev 5383: change slots back to a list. in http://bazaar.launchpad.net/~jameinel/bzr/2.3-send-mem-614576
John Arbash Meinel
john at arbash-meinel.com
Wed Aug 11 02:31:21 BST 2010
At http://bazaar.launchpad.net/~jameinel/bzr/2.3-send-mem-614576
------------------------------------------------------------
revno: 5383
revision-id: john at arbash-meinel.com-20100811013111-wdrv1hp03kir7gf2
parent: john at arbash-meinel.com-20100811012746-5up3wsi4ozueh0rg
committer: John Arbash Meinel <john at arbash-meinel.com>
branch nick: 2.3-send-mem-614576
timestamp: Tue 2010-08-10 20:31:11 -0500
message:
change slots back to a list.
It actually works the way it was written, but I assume it is some
sort of DWIM in the python code, so we'll try to be more standard
about it.
-------------- next part --------------
=== modified file 'bzrlib/multiparent.py'
--- a/bzrlib/multiparent.py 2010-08-10 17:01:37 +0000
+++ b/bzrlib/multiparent.py 2010-08-11 01:31:11 +0000
@@ -76,7 +76,7 @@
class MultiParent(object):
"""A multi-parent diff"""
- __slots__ = ('hunks')
+ __slots__ = ['hunks']
def __init__(self, hunks=None):
if hunks is not None:
More information about the bazaar-commits
mailing list