Skip to content

Commit

Permalink
docs(context): Note that several methods are no longer implemented. (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
rwhogg authored Nov 8, 2022
1 parent ae813e9 commit 34c2c38
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions google/cloud/ndb/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -648,43 +648,43 @@ def in_retry(self):
return self._retry is not None

def memcache_add(self, *args, **kwargs):
"""Direct pass-through to memcache client."""
"""Direct pass-through to memcache client. No longer implemented."""
raise exceptions.NoLongerImplementedError()

def memcache_cas(self, *args, **kwargs):
"""Direct pass-through to memcache client."""
"""Direct pass-through to memcache client. No longer implemented."""
raise exceptions.NoLongerImplementedError()

def memcache_decr(self, *args, **kwargs):
"""Direct pass-through to memcache client."""
"""Direct pass-through to memcache client. No longer implemented."""
raise exceptions.NoLongerImplementedError()

def memcache_delete(self, *args, **kwargs):
"""Direct pass-through to memcache client."""
"""Direct pass-through to memcache client. No longer implemented."""
raise exceptions.NoLongerImplementedError()

def memcache_get(self, *args, **kwargs):
"""Direct pass-through to memcache client."""
"""Direct pass-through to memcache client. No longer implemented."""
raise exceptions.NoLongerImplementedError()

def memcache_gets(self, *args, **kwargs):
"""Direct pass-through to memcache client."""
"""Direct pass-through to memcache client. No longer implemented."""
raise exceptions.NoLongerImplementedError()

def memcache_incr(self, *args, **kwargs):
"""Direct pass-through to memcache client."""
"""Direct pass-through to memcache client. No longer implemented."""
raise exceptions.NoLongerImplementedError()

def memcache_replace(self, *args, **kwargs):
"""Direct pass-through to memcache client."""
"""Direct pass-through to memcache client. No longer implemented."""
raise exceptions.NoLongerImplementedError()

def memcache_set(self, *args, **kwargs):
"""Direct pass-through to memcache client."""
"""Direct pass-through to memcache client. No longer implemented."""
raise exceptions.NoLongerImplementedError()

def urlfetch(self, *args, **kwargs):
"""Fetch a resource using HTTP."""
"""Fetch a resource using HTTP. No longer implemented."""
raise exceptions.NoLongerImplementedError()


Expand Down

0 comments on commit 34c2c38

Please sign in to comment.