You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Works correctly on python classes derivded from "object"
mixes lower and upper attributes together sorted by name
pushes all reserved names to the end of the list
stringdirCommand="sorted([m for m in dir("+name+") if not m.startswith('__')], key = str.lower) + sorted([m for m in dir("+name+") if m.startswith('__')])";
0 commit comments