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.
Conception/drake-master/bindings/pydrake/examples/pendulum.py

20 lines
564 B

"""Shim module that provides vestigial names for pydrake.examples.
Prefer not to use this import path in new code; all of the code in
this module can be imported from pydrake.examples directly.
"""
from pydrake.common.deprecation import _warn_deprecated
from pydrake.examples import (
PendulumGeometry,
PendulumInput,
PendulumParams,
PendulumPlant,
PendulumState,
)
_warn_deprecated(
"Please import from the pydrake.examples module directly, instead of the "
f"deprecated {__name__} submodule.",
date="2023-05-01", stacklevel=3)