Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
DOC Convert axes docstrings to numpydoc: #7205 #7389
Conversation
QuLogic
added the
Documentation
label
Nov 3, 2016
NelleV
approved these changes
Nov 3, 2016
Hi @cfackler
Thanks a lot for this patch! This is a great improvement on our documentation.
I've added some comments, but I am fine merging as is.
My greatest concern is the fact that we seem to document several ways to do one action. I think as much as possible we should try to document one and only one way to do an action, as consistently as possible including in our response to SO questions.
| + Returns | ||
| + ------- | ||
| + xlimits : tuple | ||
| + Returns the current x-axis limits, reflecting any changes |
| - set_ylim(top=1) # bottom unchanged | ||
| + top : scalar, optional | ||
| + The top ylim (default: None, which leaves the top limit | ||
| + unchanged). The previous name `ymax` may be used instead. |
NelleV
Nov 3, 2016
Contributor
I'd avoid mentioning the old API. As much as possible, we should advertise one and only way to do an action.
NelleV
changed the title from
DOC Convert axes docstrings to numpydoc: #7205 to [MRG+1] DOC Convert axes docstrings to numpydoc: #7205
Nov 3, 2016
tacaswell
added this to the
2.0.1 (next bug fix release)
milestone
Nov 3, 2016
|
@NelleV Thanks for the suggestions. I agree and have updated the PR. |
NelleV
merged commit 1d4244f
into matplotlib:master
Nov 7, 2016
|
Thanks @cfackler for the patch! The cherry-pick to v.2.x conficts and I don't have time to look into it tonight. |
tacaswell
added a commit
that referenced
this pull request
Nov 8, 2016
|
|
NelleV + tacaswell |
814fff5
|
|
Backported to v2.x as 814fff5 |
cfackler commentedNov 3, 2016
I've converted several docstrings for the axes class to numpydoc format.