| Index: third_party/google-endpoints/future/moves/subprocess.py
|
| diff --git a/third_party/google-endpoints/future/moves/subprocess.py b/third_party/google-endpoints/future/moves/subprocess.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..43ffd2ac23562dd06e501528fab84ec33ab5bd21
|
| --- /dev/null
|
| +++ b/third_party/google-endpoints/future/moves/subprocess.py
|
| @@ -0,0 +1,11 @@
|
| +from __future__ import absolute_import
|
| +from future.utils import PY2, PY26
|
| +
|
| +from subprocess import *
|
| +
|
| +if PY2:
|
| + __future_module__ = True
|
| + from commands import getoutput, getstatusoutput
|
| +
|
| +if PY26:
|
| + from future.backports.misc import check_output
|
|
|