| Index: third_party/google-endpoints/future/moves/_dummy_thread.py
|
| diff --git a/third_party/google-endpoints/future/moves/_dummy_thread.py b/third_party/google-endpoints/future/moves/_dummy_thread.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..688d249bbe7d3d86289affbf87d2c2f1a643a239
|
| --- /dev/null
|
| +++ b/third_party/google-endpoints/future/moves/_dummy_thread.py
|
| @@ -0,0 +1,8 @@
|
| +from __future__ import absolute_import
|
| +from future.utils import PY3
|
| +
|
| +if PY3:
|
| + from _dummy_thread import *
|
| +else:
|
| + __future_module__ = True
|
| + from dummy_thread import *
|
|
|