Skip to content

Commit

Permalink
docs: include details of inherited class members (#64)
Browse files Browse the repository at this point in the history
* docs: include details of inherited class members

* Clarify result() return type for special queries
  • Loading branch information
plamut committed Mar 26, 2020
1 parent f154b78 commit 9ada7a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -42,7 +42,7 @@

# autodoc/autosummary flags
autoclass_content = "both"
autodoc_default_flags = ["members"]
autodoc_default_flags = ["members", "inherited-members"]
autosummary_generate = True


Expand Down
3 changes: 3 additions & 0 deletions google/cloud/bigquery/job.py
Expand Up @@ -3168,6 +3168,9 @@ def result(
set** (this is distinct from the total number of rows in the
current page: ``iterator.page.num_items``).
If the query is a special query that produces no results, e.g.
a DDL query, an ``_EmptyRowIterator`` instance is returned.
Raises:
google.cloud.exceptions.GoogleCloudError:
If the job failed.
Expand Down

0 comments on commit 9ada7a5

Please sign in to comment.