Hi,
Consider the following problem:
Suppose we have three methods bound to a class `C` with the following names:
`__init__`, `a` and `A`.
Now, in the documentation created by sphinx, we'd have documentation in order (when `member-order` is `alphabetic`) :
`A`, `__init__` and `a`.
it seems like it is so because: `sorted(["a", "__init__", "A"]) == ["A", "__init__", "a"]`
-------
I know that it's not recommended by PEP8, but we have a few methods which start with a capital letter. ( We're creating python bindings via pybind11).
This behavior of sphinx, is leading to documentation which looks unsightly because sometimes `__init__` comes way down after all the methods which start with a capital letter:
https://www.photobox.co.uk/my/photo/full?photo_id=502682079763
I was wondering how could we solve it?
Thanks,