You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
551 B
20 lines
551 B
"""
|
|
.. deprecated:: 1.7
|
|
|
|
fcode.py was deprecated and renamed to fortran.py. This is a shim file to
|
|
provide backwards compatibility.
|
|
|
|
"""
|
|
|
|
from sympy.utilities.exceptions import sympy_deprecation_warning
|
|
|
|
sympy_deprecation_warning(
|
|
"""
|
|
The sympy.printing.fcode submodule is deprecated. It has been renamed to
|
|
sympy.printing.fortran.
|
|
""",
|
|
deprecated_since_version="1.7",
|
|
active_deprecations_target="deprecated-printing-code-submodules",
|
|
)
|
|
|
|
from .fortran import fcode, print_fcode, known_functions, FCodePrinter # noqa:F401
|