From 972a8b84bb4a3adec6322219c11370e48824404e Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Tue, 20 Oct 2009 10:48:31 +0200 Subject: Added slots to Repo type to be sure we do not accidentally set values on it, and to be more efficient of course ;) TODO: Added info about possible config improvement --- lib/git/repo.py | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/git/repo.py') diff --git a/lib/git/repo.py b/lib/git/repo.py index 3efefd9c..898b0f30 100644 --- a/lib/git/repo.py +++ b/lib/git/repo.py @@ -42,6 +42,7 @@ class Repo(object): the log. """ DAEMON_EXPORT_FILE = 'git-daemon-export-ok' + __slots__ = ( "wd", "path", "_bare", "git" ) # precompiled regex re_whitespace = re.compile(r'\s+') -- cgit v1.2.1