diff options
Diffstat (limited to 'vim/bundle/YouCompleteMe/third_party/pythonfutures/futures/__init__.py')
m--------- | vim/bundle/YouCompleteMe | 0 | ||||
-rwxr-xr-x | vim/bundle/YouCompleteMe/third_party/pythonfutures/futures/__init__.py | 24 |
2 files changed, 0 insertions, 24 deletions
diff --git a/vim/bundle/YouCompleteMe b/vim/bundle/YouCompleteMe new file mode 160000 +Subproject 0de1c0c9bb13ce82172b472c676035cd47cf6a6 diff --git a/vim/bundle/YouCompleteMe/third_party/pythonfutures/futures/__init__.py b/vim/bundle/YouCompleteMe/third_party/pythonfutures/futures/__init__.py deleted file mode 100755 index 8f8b234..0000000 --- a/vim/bundle/YouCompleteMe/third_party/pythonfutures/futures/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -# 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) |