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 | |
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
-rw-r--r-- | lib/git/async/__init__.py (renamed from lib/git/mp/__init__.py) | 0 | ||||
-rw-r--r-- | lib/git/async/channel.py (renamed from lib/git/mp/channel.py) | 0 | ||||
-rw-r--r-- | lib/git/async/pool.py (renamed from lib/git/mp/pool.py) | 0 | ||||
-rw-r--r-- | lib/git/async/thread.py (renamed from lib/git/mp/thread.py) | 0 | ||||
-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 |
8 files changed, 3 insertions, 3 deletions
diff --git a/lib/git/mp/__init__.py b/lib/git/async/__init__.py index 89b9eb47..89b9eb47 100644 --- a/lib/git/mp/__init__.py +++ b/lib/git/async/__init__.py diff --git a/lib/git/mp/channel.py b/lib/git/async/channel.py index c9cbfb87..c9cbfb87 100644 --- a/lib/git/mp/channel.py +++ b/lib/git/async/channel.py diff --git a/lib/git/mp/pool.py b/lib/git/async/pool.py index f9f7880b..f9f7880b 100644 --- a/lib/git/mp/pool.py +++ b/lib/git/async/pool.py diff --git a/lib/git/mp/thread.py b/lib/git/async/thread.py index 3938666a..3938666a 100644 --- a/lib/git/mp/thread.py +++ b/lib/git/async/thread.py 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): |