Merge "Expose underlying timeout error"

This commit is contained in:
Jenkins 2017-04-14 00:56:44 +00:00 committed by Gerrit Code Review
commit fba366a839
2 changed files with 2 additions and 0 deletions

View File

@ -20,6 +20,7 @@ from futurist._futures import Future # noqa
from futurist._futures import GreenFuture # noqa
from futurist._futures import CancelledError # noqa
from futurist._futures import TimeoutError # noqa
from futurist._futures import GreenThreadPoolExecutor # noqa
from futurist._futures import ProcessPoolExecutor # noqa

View File

@ -28,6 +28,7 @@ from futurist import _thread
from futurist import _utils
TimeoutError = _futures.TimeoutError
CancelledError = _futures.CancelledError