LINE_LENGTH: 79

**********

def func1():
    def func2():
        def func3():
            """
            Below is a formula that should not be wrapped. Here are some more contents that are arbitrary just to make the line length quite long so that we can test how it can be wrapped. This paragraph would end with two colons to signal that the contents below should not be wrapped::

                                    x^alpha * beta
                    y(x) = --------------------------------
                                1       gamma^a * tau
                                ------ + ---------------
                                Dmax        Emin

            where:
                + x     = Something
                + alpha = Something else
                + beta  = Something beta
                + a     = A thing
                + gamma = The gamma

            Parameters
            ----------
            arg1 : int
                Below is a formula that should not be wrapped. Here are some more contents that are arbitrary just to make the line length quite long so that we can test how it can be wrapped. This paragraph would end with two colons to signal that the contents below should not be wrapped::
                                    x^alpha * beta
                    y(x) = --------------------------------
                                1       gamma^a * tau
                                ------ + ---------------
                                Dmax        Emin

                where:
                    + x     = Something
                    + alpha = Something else
                    + beta  = Something beta
                    + a     = A thing
                    + gamma = The gamma

            arg2 : bool
                Here is a table, and it should not be wrapped.

                    +------------+--------+------------+-------------+-------------+--------+-----+
                    | strain [%] | G/Gmax | strain [%] | damping [%] |  strain [%] | G/Gmax | ... |
                    +============+========+============+=============+=============+========+=====+
                    |    ...     |  ...   |    ...     |    ...      |    ...      |  ...   | ... |
                    +------------+--------+------------+-------------+-------------+--------+-----+
            """
            pass

**********

def func1():
    def func2():
        def func3():
            """
            Below is a formula that should not be wrapped. Here are some more
            contents that are arbitrary just to make the line length quite long
            so that we can test how it can be wrapped. This paragraph would end
            with two colons to signal that the contents below should not be
            wrapped::

                                    x^alpha * beta
                    y(x) = --------------------------------
                                1       gamma^a * tau
                                ------ + ---------------
                                Dmax        Emin

            where:
                + x     = Something
                + alpha = Something else
                + beta  = Something beta
                + a     = A thing
                + gamma = The gamma

            Parameters
            ----------
            arg1 : int
                Below is a formula that should not be wrapped. Here are some
                more contents that are arbitrary just to make the line length
                quite long so that we can test how it can be wrapped. This
                paragraph would end with two colons to signal that the contents
                below should not be wrapped::
                                    x^alpha * beta
                    y(x) = --------------------------------
                                1       gamma^a * tau
                                ------ + ---------------
                                Dmax        Emin

                where:
                    + x     = Something
                    + alpha = Something else
                    + beta  = Something beta
                    + a     = A thing
                    + gamma = The gamma

            arg2 : bool
                Here is a table, and it should not be wrapped.

                    +------------+--------+------------+-------------+-------------+--------+-----+
                    | strain [%] | G/Gmax | strain [%] | damping [%] |  strain [%] | G/Gmax | ... |
                    +============+========+============+=============+=============+========+=====+
                    |    ...     |  ...   |    ...     |    ...      |    ...      |  ...   | ... |
                    +------------+--------+------------+-------------+-------------+--------+-----+
            """
            pass
