Skip to content

Commit bfb5b30

Browse files
committedMar 22, 2025
refactor: Prepare feature for ordering by __all__ value
Issue-219: #219
1 parent 681afb1 commit bfb5b30

File tree

6 files changed

+48
-11
lines changed

6 files changed

+48
-11
lines changed
 

‎docs/insiders/changelog.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## mkdocstrings-python Insiders
44

5+
### 1.12.0 <small>March 22, 2025</small> { id="1.12.0" }
6+
7+
- [Ordering method: `__all__`][option-members_order]
8+
59
### 1.11.0 <small>March 20, 2025</small> { id="1.11.0" }
610

711
- [Filtering method: `public`][option-filters-public]

‎docs/insiders/goals.yml

+3
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,6 @@ goals:
4848
- name: "Filtering method: `public`"
4949
ref: /usage/configuration/members/#option-filters-public
5050
since: 2025/03/20
51+
- name: "Ordering method: `__all__`"
52+
ref: /usage/configuration/members/#option-members_order
53+
since: 2025/03/22

‎docs/usage/configuration/members.md

+10-3
Original file line numberDiff line numberDiff line change
@@ -264,13 +264,14 @@ class Main(Base):
264264
[](){#option-members_order}
265265
## `members_order`
266266

267-
- **:octicons-package-24: Type [`str`][] :material-equal: `"alphabetical"`{ title="default value" }**
267+
- **:octicons-package-24: Type `str | list[str]` :material-equal: `"alphabetical"`{ title="default value" }**
268268
<!-- - **:octicons-project-template-24: Template :material-null:** (N/A) -->
269269

270270
The members ordering to use. Possible values:
271271

272-
- `alphabetical`: order by the members names.
273-
- `source`: order members as they appear in the source file.
272+
- `__all__` ([:octicons-heart-fill-24:{ .pulse } Sponsors only](../../insiders/index.md){ .insiders } &mdash; [:octicons-tag-24: Insiders 1.12.0](../../insiders/changelog.md#1.12.0)): Order according to `__all__` attributes. Since classes do not define `__all__` attributes, you can specify a second ordering method by using a list.
273+
- `alphabetical`: Order by the members names.
274+
- `source`: Order members as they appear in the source file.
274275

275276
The order applies for all members, recursively.
276277
The order will be ignored for members that are explicitely sorted using the [`members`][] option.
@@ -292,6 +293,12 @@ plugins:
292293
members_order: source
293294
```
294295

296+
```md title="or in docs/some_page.md (local configuration)"
297+
::: package.module
298+
options:
299+
members_order: [__all__, source]
300+
```
301+
295302
```python title="package/module.py"
296303
"""Module docstring."""
297304

‎pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ classifiers = [
3333
dependencies = [
3434
"mkdocstrings>=0.28.3",
3535
"mkdocs-autorefs>=1.4",
36-
"griffe>=0.49",
36+
"griffe>=1.6.2",
3737
"typing-extensions>=4.0; python_version < '3.11'",
3838
]
3939

‎src/mkdocstrings_handlers/python/_internal/config.py

+9-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99

1010
from mkdocstrings import get_logger
1111

12+
from mkdocstrings_handlers.python._internal.rendering import Order # noqa: TC001
13+
1214
# YORE: EOL 3.10: Replace block with line 2.
1315
if sys.version_info >= (3, 11):
1416
from typing import Self
@@ -520,13 +522,18 @@ class PythonInputOptions:
520522
] = None
521523

522524
members_order: Annotated[
523-
Literal["alphabetical", "source"],
525+
Order | list[Order],
524526
_Field(
525527
group="members",
526528
description="""The members ordering to use.
527529
528-
- `alphabetical`: order by the members names,
530+
- `__all__`: order members according to `__all__` module attributes, if declared;
531+
- `alphabetical`: order members alphabetically;
529532
- `source`: order members as they appear in the source file.
533+
534+
Since `__all__` is a module-only attribute, it can't be used to sort class members,
535+
therefore the `members_order` option accepts a list of ordering methods,
536+
indicating ordering preferences.
530537
""",
531538
),
532539
] = "alphabetical"

‎src/mkdocstrings_handlers/python/_internal/rendering.py

+21-5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
import sys
1010
import warnings
1111
from collections import defaultdict
12+
from contextlib import suppress
1213
from dataclasses import replace
1314
from functools import lru_cache
1415
from pathlib import Path
@@ -56,12 +57,22 @@ def _sort_key_source(item: CollectorItem) -> float:
5657
return item.lineno if item.lineno is not None else float("inf")
5758

5859

59-
Order = Literal["alphabetical", "source"]
60-
"""Ordering methods."""
60+
def _sort__all__(item: CollectorItem) -> float: # noqa: ARG001
61+
raise ValueError("Not implemented in public version of mkdocstrings-python")
6162

62-
_order_map = {
63+
64+
Order = Literal["__all__", "alphabetical", "source"]
65+
"""Ordering methods.
66+
67+
- `__all__`: order members according to `__all__` module attributes, if declared;
68+
- `alphabetical`: order members alphabetically;
69+
- `source`: order members as they appear in the source file.
70+
"""
71+
72+
_order_map: dict[str, Callable[[Object | Alias], str | float]] = {
6373
"alphabetical": _sort_key_alphabetical,
6474
"source": _sort_key_source,
75+
"__all__": _sort__all__,
6576
}
6677

6778

@@ -245,7 +256,7 @@ def do_format_attribute(
245256

246257
def do_order_members(
247258
members: Sequence[Object | Alias],
248-
order: Order,
259+
order: Order | list[Order],
249260
members_list: bool | list[str] | None,
250261
) -> Sequence[Object | Alias]:
251262
"""Order members given an ordering method.
@@ -265,7 +276,12 @@ def do_order_members(
265276
if name in members_dict:
266277
sorted_members.append(members_dict[name])
267278
return sorted_members
268-
return sorted(members, key=_order_map[order])
279+
if isinstance(order, str):
280+
order = [order]
281+
for method in order:
282+
with suppress(ValueError):
283+
return sorted(members, key=_order_map[method])
284+
return members
269285

270286

271287
# YORE: Bump 2: Remove block.

0 commit comments

Comments
 (0)
Please sign in to comment.