8000 DOC Fix inconsistencies by Scowley4 · Pull Request #26301 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

DOC Fix inconsistencies #26301

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

Merged
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
Next Next commit
Replace 'Exceptions' headers with 'Raises'
  • Loading branch information
Scowley4 committed May 7, 2019
commit ec17ff0069fa5b60e484a9df05414dd7e1395dc8
20 changes: 10 additions & 10 deletions pandas/io/pytables.py
Original file line number Diff line number Diff line change
Expand Up @@ -751,8 +751,8 @@ def select_column(self, key, column, **kwargs):
key : object
column: the column of interest

Exceptions
----------
Raises
------
raises KeyError if the column is not found (or key is not a valid
store)
raises ValueError if the column can not be extracted individually (it
Expand All @@ -777,8 +777,8 @@ def select_as_multiple(self, keys, where=None, selector=None, columns=None,
iterator : boolean, return an iterator, default False
chunksize : nrows to include in iteration, return an iterator

Exceptions
----------
Raises
------
raises KeyError if keys or selector is not found or keys is empty
raises TypeError if keys is not a list or tuple
raises ValueError if the tables are not ALL THE SAME DIMENSIONS
Expand Down Expand Up @@ -890,8 +890,8 @@ def remove(self, key, where=None, start=None, stop=None):
-------
number of rows removed (or None if not a Table)

Exceptions
----------
Raises
------
raises KeyError if key is not a valid store

"""
Expand Down Expand Up @@ -1059,8 +1059,8 @@ def create_table_index(self, key, **kwargs):
----------
key : object (the node to index)

Exceptions
----------
Raises
------
raises if the node is not a table

"""
Expand Down Expand Up @@ -3347,8 +3347,8 @@ def create_index(self, columns=None, optlevel=None, kind=None):
optlevel: optimization level (defaults to 6)
kind : kind of index (defaults to 'medium')

Exceptions
----------
Raises
------
raises if the node is not a table

"""
Expand Down
0