Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(context): Note that several methods are no longer implemented. #821

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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