aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/py
diff options
context:
space:
mode:
authorGravatar Alex Humesky <ahumesky@google.com>2015-05-19 12:30:52 -0400
committerGravatar Alex Humesky <ahumesky@google.com>2015-05-19 12:30:52 -0400
commitf4e8497aa04476aef8797968b21b0304ac2ab7d2 (patch)
tree466abc51c732ab4e6e6d2c0120892bc5db7eccb6 /third_party/py
parentb6299214d90159639879f6144cec9da713d0850d (diff)
Fixes import paths in third_party/py/concurrent
Diffstat (limited to 'third_party/py')
-rw-r--r--third_party/py/concurrent/futures/__init__.py22
-rw-r--r--third_party/py/concurrent/futures/_base.py2
-rw-r--r--third_party/py/concurrent/futures/process.py2
-rw-r--r--third_party/py/concurrent/futures/thread.py2
4 files changed, 14 insertions, 14 deletions
diff --git a/third_party/py/concurrent/futures/__init__.py b/third_party/py/concurrent/futures/__init__.py
index b5231f8aab..43f4d14ee4 100644
--- a/third_party/py/concurrent/futures/__init__.py
+++ b/third_party/py/concurrent/futures/__init__.py
@@ -5,14 +5,14 @@
__author__ = 'Brian Quinlan (brian@sweetapp.com)'
-from concurrent.futures._base import (FIRST_COMPLETED,
- FIRST_EXCEPTION,
- ALL_COMPLETED,
- CancelledError,
- TimeoutError,
- Future,
- Executor,
- wait,
- as_completed)
-from concurrent.futures.process import ProcessPoolExecutor
-from concurrent.futures.thread import ThreadPoolExecutor
+from third_party.py.concurrent.futures._base import (FIRST_COMPLETED,
+ FIRST_EXCEPTION,
+ ALL_COMPLETED,
+ CancelledError,
+ TimeoutError,
+ Future,
+ Executor,
+ wait,
+ as_completed)
+from third_party.py.concurrent.futures.process import ProcessPoolExecutor
+from third_party.py.concurrent.futures.thread import ThreadPoolExecutor
diff --git a/third_party/py/concurrent/futures/_base.py b/third_party/py/concurrent/futures/_base.py
index 1d90211bd0..194efb9704 100644
--- a/third_party/py/concurrent/futures/_base.py
+++ b/third_party/py/concurrent/futures/_base.py
@@ -10,7 +10,7 @@ import time
try:
from collections import namedtuple
except ImportError:
- from concurrent.futures._compat import namedtuple
+ from third_party.py.concurrent.futures._compat import namedtuple
__author__ = 'Brian Quinlan (brian@sweetapp.com)'
diff --git a/third_party/py/concurrent/futures/process.py b/third_party/py/concurrent/futures/process.py
index 87dc789433..ee61bf623b 100644
--- a/third_party/py/concurrent/futures/process.py
+++ b/third_party/py/concurrent/futures/process.py
@@ -50,7 +50,7 @@ import threading
import weakref
import sys
-from concurrent.futures import _base
+from third_party.py.concurrent.futures import _base
try:
import queue
diff --git a/third_party/py/concurrent/futures/thread.py b/third_party/py/concurrent/futures/thread.py
index ce0dda0c38..98b553a025 100644
--- a/third_party/py/concurrent/futures/thread.py
+++ b/third_party/py/concurrent/futures/thread.py
@@ -9,7 +9,7 @@ import threading
import weakref
import sys
-from concurrent.futures import _base
+from third_party.py.concurrent.futures import _base
try:
import queue