Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Fix Sphinx roles for classes.
[ci skip]
  • Loading branch information
tseaver committed Feb 18, 2015
commit 510836a04f4734808ce7559c569b185853efd77c
8 changes: 4 additions & 4 deletions gcloud/datastore/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def delete(self, keys):
dataset_id=self.dataset_id)

def key(self, *path_args, **kwargs):
"""Proxy to :func:`gcloud.datastore.key.Key`.
"""Proxy to :class:`gcloud.datastore.key.Key`.

Passes our ``dataset_id``.
"""
Expand All @@ -73,22 +73,22 @@ def key(self, *path_args, **kwargs):
return Key(*path_args, **kwargs)

def batch(self):
"""Proxy to :func:`gcloud.datastore.batch.Batch`.
"""Proxy to :class:`gcloud.datastore.batch.Batch`.

Passes our ``dataset_id``.
"""
return Batch(dataset_id=self.dataset_id, connection=self.connection)

def transaction(self):
"""Proxy to :func:`gcloud.datastore.transaction.Transaction`.
"""Proxy to :class:`gcloud.datastore.transaction.Transaction`.

Passes our ``dataset_id``.
"""
return Transaction(dataset_id=self.dataset_id,
connection=self.connection)

def query(self, **kwargs):
"""Proxy to :func:`gcloud.datastore.query.Query`.
"""Proxy to :class:`gcloud.datastore.query.Query`.

Passes our ``dataset_id``.

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

"""
Expand Down