From f4e8497aa04476aef8797968b21b0304ac2ab7d2 Mon Sep 17 00:00:00 2001 From: Alex Humesky Date: Tue, 19 May 2015 12:30:52 -0400 Subject: Fixes import paths in third_party/py/concurrent --- third_party/py/concurrent/futures/__init__.py | 22 +++++++++++----------- third_party/py/concurrent/futures/_base.py | 2 +- third_party/py/concurrent/futures/process.py | 2 +- third_party/py/concurrent/futures/thread.py | 2 +- 4 files changed, 14 insertions(+), 14 deletions(-) (limited to 'third_party/py') 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 -- cgit v1.2.3