Files
mpmath--mpmath/mpmath/math2.py
T
2024-04-16 12:18:03 +03:00

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)