1
vote
Is there a benefit to defining a class inside another class in Python?
You could be using a class as class generator. Like (in some off the cuff code :)
class gen(object):
class base_1(object): pass
...
class base_n(object): pass
def _ …
