8 lines
205 B
Python
8 lines
205 B
Python
import warnings
|
|
|
|
def __getattr__(name):
|
|
warnings.warn("the math2 module is deprecated, use libfp instead",
|
|
DeprecationWarning)
|
|
from . import libfp
|
|
return getattr(libfp, name)
|