From e573b3020c032400eed60b649a2cbf55266e6bb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Thu, 30 Jun 2016 16:03:25 +0200 Subject: Add current configurations from old repository --- .../third_party/pythonfutures/futures/__init__.py | 24 ++++++++++++++++++++++ .../third_party/pythonfutures/futures/process.py | 1 + .../third_party/pythonfutures/futures/thread.py | 1 + 3 files changed, 26 insertions(+) create mode 100755 vim/bundle/YouCompleteMe/third_party/pythonfutures/futures/__init__.py create mode 100755 vim/bundle/YouCompleteMe/third_party/pythonfutures/futures/process.py create mode 100755 vim/bundle/YouCompleteMe/third_party/pythonfutures/futures/thread.py (limited to 'vim/bundle/YouCompleteMe/third_party/pythonfutures/futures') diff --git a/vim/bundle/YouCompleteMe/third_party/pythonfutures/futures/__init__.py b/vim/bundle/YouCompleteMe/third_party/pythonfutures/futures/__init__.py new file mode 100755 index 0000000..8f8b234 --- /dev/null +++ b/vim/bundle/YouCompleteMe/third_party/pythonfutures/futures/__init__.py @@ -0,0 +1,24 @@ +# Copyright 2009 Brian Quinlan. All Rights Reserved. +# Licensed to PSF under a Contributor Agreement. + +"""Execute computations asynchronously using threads or processes.""" + +import warnings + +from concurrent.futures import (FIRST_COMPLETED, + FIRST_EXCEPTION, + ALL_COMPLETED, + CancelledError, + TimeoutError, + Future, + Executor, + wait, + as_completed, + ProcessPoolExecutor, + ThreadPoolExecutor) + +__author__ = 'Brian Quinlan (brian@sweetapp.com)' + +warnings.warn('The futures package has been deprecated. ' + 'Use the concurrent.futures package instead.', + DeprecationWarning) diff --git a/vim/bundle/YouCompleteMe/third_party/pythonfutures/futures/process.py b/vim/bundle/YouCompleteMe/third_party/pythonfutures/futures/process.py new file mode 100755 index 0000000..e9d37b1 --- /dev/null +++ b/vim/bundle/YouCompleteMe/third_party/pythonfutures/futures/process.py @@ -0,0 +1 @@ +from concurrent.futures import ProcessPoolExecutor diff --git a/vim/bundle/YouCompleteMe/third_party/pythonfutures/futures/thread.py b/vim/bundle/YouCompleteMe/third_party/pythonfutures/futures/thread.py new file mode 100755 index 0000000..f6bd05d --- /dev/null +++ b/vim/bundle/YouCompleteMe/third_party/pythonfutures/futures/thread.py @@ -0,0 +1 @@ +from concurrent.futures import ThreadPoolExecutor -- cgit v1.2.3