This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Patitotective
Recipients Patitotective, serhiy.storchaka
Date 2021-09-27.22:03:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1632780232.78.0.801215351793.issue45288@roundup.psfhosted.org>
In-reply-to
Content
I'm don't really need inherit order, neither built-in members.
e.g.:
```py
a = 3 # First

class B: # Second
    pass

def foo(): # Third
    pass

```
Or in a more complex module:
```py
class A: # First
    pass

class B: # Second
    pass

class C(A, B): # Third
    pass
```
The order should be:
- A (class)
- B (class)
- C (class): inherited from A and B.

Here is the link to the script I'm using to inspect a module: https://github.com/Patitotective/PyAPIReference/blob/main/PyAPIReference/inspect_object.py.
History
Date User Action Args
2021-09-27 22:03:53Patitotectivesetrecipients: + Patitotective, serhiy.storchaka
2021-09-27 22:03:52Patitotectivesetmessageid: <1632780232.78.0.801215351793.issue45288@roundup.psfhosted.org>
2021-09-27 22:03:52Patitotectivelinkissue45288 messages
2021-09-27 22:03:52Patitotectivecreate