My Python knowledge is limited, I need some help on the following situation.
Assume that I have two classes A and B, is it possible to do somet
A
B
You can use a conditional expression:
class newClass(A if os.name == 'nt' else B): ...