diff options
-rw-r--r-- | gitMergeCommon.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gitMergeCommon.py b/gitMergeCommon.py index ff6f58a07..fdbf9e477 100644 --- a/gitMergeCommon.py +++ b/gitMergeCommon.py @@ -107,7 +107,10 @@ def isSha(obj): return (type(obj) is str and bool(shaRE.match(obj))) or \ (type(obj) is int and obj >= 1) -class Commit: +class Commit(object): + __slots__ = ['parents', 'firstLineMsg', 'children', '_tree', 'sha', + 'virtual'] + def __init__(self, sha, parents, tree=None): self.parents = parents self.firstLineMsg = None |