Skip to content
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

Reconsider position of Attributes and Methods sections #608

Open
timhoffm opened this issue Feb 24, 2025 · 4 comments
Open

Reconsider position of Attributes and Methods sections #608

timhoffm opened this issue Feb 24, 2025 · 4 comments

Comments

@timhoffm
Copy link
Contributor

timhoffm commented Feb 24, 2025

#571 changed the section order to move Attributes and Methods right behind Parameters.

The order is now

sections = {
"Signature": "",
"Summary": [""],
"Extended Summary": [],
"Parameters": [],
"Attributes": [],
"Methods": [],
"Returns": [],
"Yields": [],
"Receives": [],
"Other Parameters": [],
"Raises": [],
"Warns": [],
"Warnings": [],
"See Also": [],
"Notes": [],
"References": "",
"Examples": "",
"index": {},
}

For classes, we can get the order Paramters > Attributes > Methods > Other Parameters , which IMHO is not quite usable as the Other Parameters are very far away from Parameters.

We have to consider that the ordering should work both for classes and methods. As far as I understand, the motivation for Other Parameters is to deemphasise them and for methods to have the (typically short) sections Returns/Yields/Receives closer to the top.

I propose to move Attributes and Methods below Other Parameters, i.e.

Parameters
Returns
Yields
Receives
Other Parameters
Attributes
Methods
  • There's no change for functions / methods as the don't use Attributes and Methods
  • There's no change for classes without "Other Parameters" because they don't use Returns/Yields/Receives
  • For classes with "Other Parameters" the sequence is "Parameters > Other Parameters > Attributes > Methods", which I think is better because the first two are input values to the construtor, while the other two are properties of the class.

One could argue that one should alternatively not use "Other Parameters" if one wants to render them next to each other anyway. But I claim it's still helpful to de-emphasize additional parameters through that extra section.

@mdhaber
Copy link
Contributor

mdhaber commented Feb 24, 2025

Would this be equivalent to moving Other Parameters right below Parameters?

@timhoffm
Copy link
Contributor Author

Only when considering classes. For methods, that would put Other Parameters before Returns/Yields/Receives, which I assume is not wanted.

@mdhaber
Copy link
Contributor

mdhaber commented Feb 24, 2025

I see. Would you be willing to make a PR?

@lucascolley how does this proposal sound to you?

@lucascolley
Copy link
Contributor

This sounds fine to me!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants