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.
21 lines
604 B
21 lines
604 B
"""
|
|
.. deprecated:: 1.7
|
|
|
|
cxxcode.py was deprecated and renamed to cxx.py. This is a shim file to
|
|
provide backwards compatibility.
|
|
|
|
"""
|
|
|
|
from sympy.utilities.exceptions import sympy_deprecation_warning
|
|
|
|
sympy_deprecation_warning(
|
|
"""
|
|
The sympy.printing.cxxcode submodule is deprecated. It has been renamed to
|
|
sympy.printing.cxx.
|
|
""",
|
|
deprecated_since_version="1.7",
|
|
active_deprecations_target="deprecated-printing-code-submodules",
|
|
)
|
|
|
|
from .cxx import (cxxcode, reserved, CXX98CodePrinter, # noqa:F401
|
|
CXX11CodePrinter, CXX17CodePrinter, cxx_code_printers)
|