This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author steven.daprano
Recipients JD-Veiga, gvanrossum, steven.daprano
Date 2021-01-11.20:37:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1610397436.92.0.687316991046.issue42895@roundup.psfhosted.org>
In-reply-to
Content
As Guido says, a full explanation will have to to a user-forum such as https://discuss.python.org/c/users/7 but consider this example and see if it gives you insight:

def demo():
    x = 1
    return (
        x - 1
        )
    print("This is not executed.")
    - (5 * x)

and remember that `+` can also be a unary operator.
History
Date User Action Args
2021-01-11 20:37:16steven.dapranosetrecipients: + steven.daprano, gvanrossum, JD-Veiga
2021-01-11 20:37:16steven.dapranosetmessageid: <1610397436.92.0.687316991046.issue42895@roundup.psfhosted.org>
2021-01-11 20:37:16steven.dapranolinkissue42895 messages
2021-01-11 20:37:16steven.dapranocreate