OpenMTC/build/lib/futile/abchelper.py
2017-11-07 14:41:38 +01:00

13 lines
232 B
Python

'''
Created on 13.11.2012
@author: kca
'''
try:
from abc import ABCMeta, abstractmethod, abstractproperty
except ImportError:
from futile import identity
ABCMeta = type
abstractmethod = abstractproperty = identity