diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2009-10-12 17:03:01 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2009-10-12 17:10:33 +0200 |
commit | 4c73e9cd66c77934f8a262b0c1bab9c2f15449ba (patch) | |
tree | fc132d15729e8d5e3abbc5fcf80f28b5ab9fe118 /lib/git/objects/base.py | |
parent | 637eadce54ca8bbe536bcf7c570c025e28e47129 (diff) | |
download | gitpython-4c73e9cd66c77934f8a262b0c1bab9c2f15449ba.tar.gz |
refs now take repo as first argument and derive from LazyMixin to allow them to dynamically retrieve their objects
Improved way commits are returned by refs as they now use the path to be sure they always point to the ref even if it changes - previously it would use the sha intead so it would not update after being cached on the ref object
Diffstat (limited to 'lib/git/objects/base.py')
-rw-r--r-- | lib/git/objects/base.py | 25 |
1 files changed, 1 insertions, 24 deletions
diff --git a/lib/git/objects/base.py b/lib/git/objects/base.py index 43aa8dd1..5007f3a1 100644 --- a/lib/git/objects/base.py +++ b/lib/git/objects/base.py @@ -4,30 +4,7 @@ # This module is part of GitPython and is released under # the BSD License: http://www.opensource.org/licenses/bsd-license.php import os - -class LazyMixin(object): - lazy_properties = [] - __slots__ = tuple() - - def __getattr__(self, attr): - """ - Whenever an attribute is requested that we do not know, we allow it - to be created and set. Next time the same attribute is reqeusted, it is simply - returned from our dict/slots. - """ - self._set_cache_(attr) - # will raise in case the cache was not created - return object.__getattribute__(self, attr) - - def _set_cache_(self, attr): - """ This method should be overridden in the derived class. - It should check whether the attribute named by attr can be created - and cached. Do nothing if you do not know the attribute or call your subclass - - The derived class may create as many additional attributes as it deems - necessary in case a git command returns more information than represented - in the single attribute.""" - pass +from git.utils import LazyMixin class Object(LazyMixin): |