Skip to content

Commit 09e6447

Browse files
authored
fix: don't try to import GAE API in other environments (#903)
The GAE memcache API isn't supported in python3. This change gives callers a new way to ensure that googleapiclient doesn't even try to import and use this legacy API.
1 parent 8ed1dcd commit 09e6447

File tree

2 files changed

+22
-12
lines changed

2 files changed

+22
-12
lines changed

googleapiclient/discovery_cache/__init__.py

+14-12
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
import logging
2020
import datetime
21-
21+
import os
2222

2323
LOGGER = logging.getLogger(__name__)
2424

@@ -32,16 +32,18 @@ def autodetect():
3232
googleapiclient.discovery_cache.base.Cache, a cache object which
3333
is auto detected, or None if no cache object is available.
3434
"""
35-
try:
36-
from google.appengine.api import memcache
37-
from . import appengine_memcache
38-
39-
return appengine_memcache.cache
40-
except Exception:
35+
if 'APPENGINE_RUNTIME' in os.environ:
4136
try:
42-
from . import file_cache
37+
from google.appengine.api import memcache
38+
from . import appengine_memcache
39+
40+
return appengine_memcache.cache
41+
except Exception:
42+
pass
43+
try:
44+
from . import file_cache
4345

44-
return file_cache.cache
45-
except Exception as e:
46-
LOGGER.warning(e, exc_info=True)
47-
return None
46+
return file_cache.cache
47+
except Exception as e:
48+
LOGGER.warning(e, exc_info=True)
49+
return None

tests/test_discovery.py

+8
Original file line numberDiff line numberDiff line change
@@ -648,6 +648,14 @@ def test_api_endpoint_override_from_client_options_dict(self):
648648

649649

650650
class DiscoveryFromAppEngineCache(unittest.TestCase):
651+
652+
def setUp(self):
653+
self.old_environ = os.environ.copy()
654+
os.environ["APPENGINE_RUNTIME"] = "python27"
655+
656+
def tearDown(self):
657+
os.environ = self.old_environ
658+
651659
def test_appengine_memcache(self):
652660
# Hack module import
653661
self.orig_import = __import__

0 commit comments

Comments
 (0)