diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-06-05 19:59:17 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-06-05 19:59:17 +0200 |
commit | 61138f2ece0cb864b933698174315c34a78835d1 (patch) | |
tree | bf764cc491c7f29bb4e9cb97b42d75b4b5c6458b /test | |
parent | 50e469109eed3a752d9a1b0297f16466ad92f8d2 (diff) | |
download | gitpython-61138f2ece0cb864b933698174315c34a78835d1.tar.gz |
Moved multiprocessing modules into own package, as they in fact have nothing to do with the object db. If that really works the way I want, it will become an own project, called async
Diffstat (limited to 'test')
-rw-r--r-- | test/git/mp/__init__.py | 0 | ||||
-rw-r--r-- | test/git/mp/test_channel.py (renamed from test/git/odb/test_channel.py) | 2 | ||||
-rw-r--r-- | test/git/mp/test_pool.py (renamed from test/git/odb/test_pool.py) | 2 | ||||
-rw-r--r-- | test/git/mp/test_thread.py (renamed from test/git/odb/test_thread.py) | 2 |
4 files changed, 3 insertions, 3 deletions
diff --git a/test/git/mp/__init__.py b/test/git/mp/__init__.py new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/git/mp/__init__.py diff --git a/test/git/odb/test_channel.py b/test/git/mp/test_channel.py index d845a6ec..9b667372 100644 --- a/test/git/odb/test_channel.py +++ b/test/git/mp/test_channel.py @@ -1,6 +1,6 @@ """Channel testing""" from test.testlib import * -from git.odb.channel import * +from git.mp.channel import * import time diff --git a/test/git/odb/test_pool.py b/test/git/mp/test_pool.py index 6656c69d..7c4a366f 100644 --- a/test/git/odb/test_pool.py +++ b/test/git/mp/test_pool.py @@ -1,6 +1,6 @@ """Channel testing""" from test.testlib import * -from git.odb.pool import * +from git.mp.pool import * import time diff --git a/test/git/odb/test_thread.py b/test/git/mp/test_thread.py index 674ecc1d..9625aabb 100644 --- a/test/git/odb/test_thread.py +++ b/test/git/mp/test_thread.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- """ Test thead classes and functions""" from test.testlib import * -from git.odb.thread import * +from git.mp.thread import * from Queue import Queue class TestWorker(WorkerThread): |