From 4177eefd7bdaea96a529b00ba9cf751924ede202 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Thu, 5 May 2011 19:43:22 +0200 Subject: Added all code from gitdb to gitpython. Next is to make it generally work. Then the tests will need some work --- git/test/__init__.py | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'git/test/__init__.py') diff --git a/git/test/__init__.py b/git/test/__init__.py index 757cbad1..63d25743 100644 --- a/git/test/__init__.py +++ b/git/test/__init__.py @@ -3,3 +3,12 @@ # # This module is part of GitPython and is released under # the BSD License: http://www.opensource.org/licenses/bsd-license.php + +import gitdb.util + +def _init_pool(): + """Assure the pool is actually threaded""" + size = 2 + print "Setting ThreadPool to %i" % size + gitdb.util.pool.set_size(size) + -- cgit v1.2.3 From acf5e6ea64a2f24117f1d419c208ed1c38c43690 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Fri, 6 May 2011 15:03:14 +0200 Subject: replaced all gitdb strings with git --- git/test/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'git/test/__init__.py') diff --git a/git/test/__init__.py b/git/test/__init__.py index 63d25743..a29d96a7 100644 --- a/git/test/__init__.py +++ b/git/test/__init__.py @@ -4,11 +4,11 @@ # This module is part of GitPython and is released under # the BSD License: http://www.opensource.org/licenses/bsd-license.php -import gitdb.util +import git.util def _init_pool(): """Assure the pool is actually threaded""" size = 2 print "Setting ThreadPool to %i" % size - gitdb.util.pool.set_size(size) + git.util.pool.set_size(size) -- cgit v1.2.3