Skip to content

DOC: Panel *xs() docstring indicates wrong default for copy #5350

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
1 commit merged into from
Nov 21, 2013
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
6 changes: 4 additions & 2 deletions pandas/core/panel.py
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,7 @@ def major_xs(self, key, copy=True):
----------
key : object
Major axis label
copy : boolean, default False
copy : boolean, default True
Copy data

Returns
Expand All @@ -720,7 +720,7 @@ def minor_xs(self, key, copy=True):
----------
key : object
Minor axis label
copy : boolean, default False
copy : boolean, default True
Copy data

Returns
Expand All @@ -739,6 +739,8 @@ def xs(self, key, axis=1, copy=True):
key : object
Label
axis : {'items', 'major', 'minor}, default 1/'major'
copy : boolean, default True
Copy data

Returns
-------
Expand Down