<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">from sympy.core.sympify import sympify


def aseries(expr, x=None, n=6, bound=0, hir=False):
    """
    See the docstring of Expr.aseries() for complete details of this wrapper.

    """
    expr = sympify(expr)
    return expr.aseries(x, n, bound, hir)
</pre></body></html>