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

Fix docstrings FBO Sphinx rendering. #965

Merged
merged 1 commit into from
Jul 4, 2015
Merged
Show file tree
Hide file tree
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
37 changes: 0 additions & 37 deletions docs/datastore-api.rst

This file was deleted.

1 change: 0 additions & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
:hidden:

gcloud-api
datastore-api
datastore-client
datastore-entities
datastore-keys
Expand Down
4 changes: 2 additions & 2 deletions gcloud/datastore/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def _extended_lookup(connection, dataset_id, key_pbs,
eventual=False, transaction_id=None):
"""Repeat lookup until all keys found (unless stop requested).

Helper function for :method:`Client.get_multi`.
Helper function for :meth:`Client.get_multi`.

:type connection: :class:`gcloud.datastore.connection.Connection`
:param connection: The connection used to connect to datastore.
Expand Down Expand Up @@ -134,7 +134,7 @@ def get(self, key, missing=None, deferred=None):

.. note::

This is just a thin wrapper over :method:`get_multi`.
This is just a thin wrapper over :meth:`get_multi`.
The backend API does not make a distinction between a single key or
multiple keys in a lookup request.

Expand Down