| Index: third_party/google-endpoints/future/moves/xmlrpc/client.py
|
| diff --git a/third_party/google-endpoints/future/moves/xmlrpc/client.py b/third_party/google-endpoints/future/moves/xmlrpc/client.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..4708cf89921e57b1fbbb715bec0203ea0bbfab55
|
| --- /dev/null
|
| +++ b/third_party/google-endpoints/future/moves/xmlrpc/client.py
|
| @@ -0,0 +1,7 @@
|
| +from __future__ import absolute_import
|
| +from future.utils import PY3
|
| +
|
| +if PY3:
|
| + from xmlrpc.client import *
|
| +else:
|
| + from xmlrpclib import *
|
|
|