From a21a9f6f13861ddc65671b278e93cf0984adaa30 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Tue, 23 Nov 2010 21:14:59 +0100 Subject: Actor: Moved it from git.objects.util to git.util, adjusted all imports accordingly. Added methods to Actor to retrieve the global committer and author information Reflog: implemented and tested append_entry method --- objects/__init__.py | 1 - 1 file changed, 1 deletion(-) (limited to 'objects/__init__.py') diff --git a/objects/__init__.py b/objects/__init__.py index e8e0ef39..65659cd1 100644 --- a/objects/__init__.py +++ b/objects/__init__.py @@ -15,7 +15,6 @@ from tag import * from blob import * from commit import * from tree import * -from util import Actor __all__ = [ name for name, obj in locals().items() if not (name.startswith('_') or inspect.ismodule(obj)) ] \ No newline at end of file -- cgit v1.2.3 From 264ba6f54f928da31a037966198a0849325b3732 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Wed, 24 Nov 2010 17:12:36 +0100 Subject: Fixed remaining issues, all tests work as expected --- objects/__init__.py | 1 + 1 file changed, 1 insertion(+) (limited to 'objects/__init__.py') diff --git a/objects/__init__.py b/objects/__init__.py index 65659cd1..77f69d29 100644 --- a/objects/__init__.py +++ b/objects/__init__.py @@ -7,6 +7,7 @@ from base import * # imported by the submodule.base import submodule.util submodule.util.IndexObject = IndexObject +submodule.util.Object = Object from submodule.base import * from submodule.root import * -- cgit v1.2.3