How to automatically “register” methods in a python class as a list class variable?
When defining a Python class, I’d like to use decorators to register some of its methods into a class variable list. Here’s an example of incorrect python that outlines what I’m looking for: class …