Skip to content

Commit ab59f78

Browse files
committed
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
1 parent 61138f2 commit ab59f78

8 files changed

Lines changed: 3 additions & 3 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Channel testing"""
22
from test.testlib import *
3-
from git.mp.channel import *
3+
from git.async.channel import *
44

55
import time
66

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Channel testing"""
22
from test.testlib import *
3-
from git.mp.pool import *
3+
from git.async.pool import *
44

55
import time
66

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
""" Test thead classes and functions"""
33
from test.testlib import *
4-
from git.mp.thread import *
4+
from git.async.thread import *
55
from Queue import Queue
66

77
class TestWorker(WorkerThread):

0 commit comments

Comments
 (0)