Using abc.ABCMeta in a way it is compatible both with Python 2.7 and Python 3.5
Question or problem about Python programming: I’d like to create a class which has abc.ABCMeta as a metaclass and is compatible both with Python 2.7 and Python 3.5. Until now, I only succeeded doing this either on 2.7 or on 3.5 – but never on both versions simultaneously. Could someone give me a hand?
Continue Reading