diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-06-05 20:03:09 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-06-05 20:03:09 +0200 |
commit | ab59f78341f1dd188aaf4c30526f6295c63438b1 (patch) | |
tree | 697bc8a11201494d560f1ea65fd77b7ef09b238e /test/git | |
parent | 61138f2ece0cb864b933698174315c34a78835d1 (diff) | |
download | gitpython-ab59f78341f1dd188aaf4c30526f6295c63438b1.tar.gz |
Renamed mp to async, as this is a much better name for what is actually going on. The default implementation uses threads, which ends up being nothing more than async, as they are all locked down by internal and the global interpreter lock
Diffstat (limited to 'test/git')
-rw-r--r-- | test/git/async/__init__.py (renamed from test/git/mp/__init__.py) | 0 | ||||
-rw-r--r-- | test/git/async/test_channel.py (renamed from test/git/mp/test_channel.py) | 2 | ||||
-rw-r--r-- | test/git/async/test_pool.py (renamed from test/git/mp/test_pool.py) | 2 | ||||
-rw-r--r-- | test/git/async/test_thread.py (renamed from test/git/mp/test_thread.py) | 2 |
4 files changed, 3 insertions, 3 deletions
diff --git a/test/git/mp/__init__.py b/test/git/async/__init__.py index e69de29b..e69de29b 100644 --- a/test/git/mp/__init__.py +++ b/test/git/async/__init__.py diff --git a/test/git/mp/test_channel.py b/test/git/async/test_channel.py index 9b667372..ad68a8d5 100644 --- a/test/git/mp/test_channel.py +++ b/test/git/async/test_channel.py @@ -1,6 +1,6 @@ """Channel testing""" from test.testlib import * -from git.mp.channel import * +from git.async.channel import * import time diff --git a/test/git/mp/test_pool.py b/test/git/async/test_pool.py index 7c4a366f..3a9ef8a1 100644 --- a/test/git/mp/test_pool.py +++ b/test/git/async/test_pool.py @@ -1,6 +1,6 @@ """Channel testing""" from test.testlib import * -from git.mp.pool import * +from git.async.pool import * import time diff --git a/test/git/mp/test_thread.py b/test/git/async/test_thread.py index 9625aabb..ca306cc0 100644 --- a/test/git/mp/test_thread.py +++ b/test/git/async/test_thread.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- """ Test thead classes and functions""" from test.testlib import * -from git.mp.thread import * +from git.async.thread import * from Queue import Queue class TestWorker(WorkerThread): |