Closed
Description
Hi,
see
Line 84 in ace112e
Unfortunately
__metaclass__
has no effect in Python 3. The correct way in Python3 is: class StatsClientBase(metaclass=abc.ABCMeta):
The best way how to keep compatibility with the Python 2 is to use six
or future.utils
. For only this particular purpose I recommend the future.utils
. See http://python-future.org/_modules/future/utils.html#with_metaclass
Metadata
Metadata
Assignees
Labels
No labels